aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendAda/fat_fields.adb
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendAda/fat_fields.adb')
-rw-r--r--test/FrontendAda/fat_fields.adb10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/FrontendAda/fat_fields.adb b/test/FrontendAda/fat_fields.adb
new file mode 100644
index 0000000..906e34e
--- /dev/null
+++ b/test/FrontendAda/fat_fields.adb
@@ -0,0 +1,10 @@
+-- RUN: %llvmgcc -c %s -o /dev/null
+-- RUN: %llvmgcc -c %s -O2 -o /dev/null
+package body Fat_Fields is
+ procedure Proc is
+ begin
+ if P = null then
+ null;
+ end if;
+ end;
+end;