diff options
Diffstat (limited to 'test/FrontendAda/unc_constructor.adb')
-rw-r--r-- | test/FrontendAda/unc_constructor.adb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/FrontendAda/unc_constructor.adb b/test/FrontendAda/unc_constructor.adb new file mode 100644 index 0000000..bc3002c --- /dev/null +++ b/test/FrontendAda/unc_constructor.adb @@ -0,0 +1,9 @@ +-- RUN: %llvmgcc -c %s -I%p/Support +package body Unc_Constructor is + procedure P (X : A) is + begin + if X = A0 then + null; + end if; + end; +end; |