aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gnat.dg/wide_boolean_pkg.adb
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.9/gcc/testsuite/gnat.dg/wide_boolean_pkg.adb')
-rw-r--r--gcc-4.9/gcc/testsuite/gnat.dg/wide_boolean_pkg.adb9
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc-4.9/gcc/testsuite/gnat.dg/wide_boolean_pkg.adb b/gcc-4.9/gcc/testsuite/gnat.dg/wide_boolean_pkg.adb
new file mode 100644
index 000000000..c61efca57
--- /dev/null
+++ b/gcc-4.9/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;