rs6000, altivec-2-runnable.c should be a runnable test
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr91660_2.f90
blob0072aba168025c4ef1c6aef5bb537fbf27b533c9
1 ! { dg-do compile }
2 ! PR fortran/91660
3 program foo
4 type(doubleprecision :: x ! { dg-error "Malformed type-spec" }
5 type(double precision :: y ! { dg-error "Malformed type-spec" }
6 type(character(len=3) :: a ! { dg-error "Malformed type-spec" }
7 type(doublecomplex :: b ! { dg-error "Malformed type-spec" }
8 type(double complex :: c ! { dg-error "Malformed type-spec" }
9 end program foo