diff options
Diffstat (limited to 'gcc/testsuite/gnat.dg/wide_boolean_pkg.adb')
-rw-r--r-- | gcc/testsuite/gnat.dg/wide_boolean_pkg.adb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/testsuite/gnat.dg/wide_boolean_pkg.adb b/gcc/testsuite/gnat.dg/wide_boolean_pkg.adb new file mode 100644 index 000000000..c61efca57 --- /dev/null +++ b/gcc/testsuite/gnat.dg/wide_boolean_pkg.adb @@ -0,0 +1,9 @@ +package body Wide_Boolean_Pkg is + + procedure Modify (LH : in out TUINT32; LB : in out TBOOL) is + begin + LH := 16#12345678#; + LB := TRUE; + end; + +end Wide_Boolean_Pkg; |