AArch64: correct constraint on Upl early clobber alternatives
[official-gcc.git] / gcc / testsuite / gfortran.dg / abstract_type_1.f90
blob09757b1f92952482f01c6347488238d746f7b490
1 ! { dg-do compile }
2 ! { dg-options "-std=f95" }
4 ! Abstract Types.
5 ! Check that ABSTRACT is rejected for F95.
7 MODULE m
9 TYPE, ABSTRACT :: t ! { dg-error "Fortran 2003" }
10 INTEGER :: x
11 END TYPE t ! { dg-error "END MODULE" }
13 END MODULE m