diff options
Diffstat (limited to 'gcc/testsuite/gnat.dg/gnatg.adb')
-rw-r--r-- | gcc/testsuite/gnat.dg/gnatg.adb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gcc/testsuite/gnat.dg/gnatg.adb b/gcc/testsuite/gnat.dg/gnatg.adb new file mode 100644 index 00000000000..4f09cb65493 --- /dev/null +++ b/gcc/testsuite/gnat.dg/gnatg.adb @@ -0,0 +1,13 @@ +-- { dg-do compile } +-- { dg-options "-gnatD" } + +with System; +with Ada.Unchecked_Conversion; +procedure gnatg is + subtype Address is System.Address; + type T is access procedure; + function Cvt is new Ada.Unchecked_Conversion (Address, T); + X : T; +begin + X := Cvt (Gnatg'Address); +end gnatg; |