aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/gnat.dg/access_discr.adb2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gnat.dg/access_discr.adb b/gcc/testsuite/gnat.dg/access_discr.adb
index 4e61c2b..a036f55 100644
--- a/gcc/testsuite/gnat.dg/access_discr.adb
+++ b/gcc/testsuite/gnat.dg/access_discr.adb
@@ -11,7 +11,7 @@ procedure access_discr is
type Two_Iface (Parent : access One) is limited new Iface with null record;
type Two_Base (Parent : access One) is new Base with null record;
- type One is record
+ type One is limited record
TA : Two_Alone (One'Access);
TI : Two_Iface (One'Access); -- OFFENDING LINE
TB : Two_Base (One'Access);