diff options
Diffstat (limited to 'test/FrontendAda/fat_fields.adb')
-rw-r--r-- | test/FrontendAda/fat_fields.adb | 10 |
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; |