nvptx, libgfortran: Switch out of "minimal" mode
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr96024.f90
blob2c914a997f2d49e9fa6f8008b66d35ca12cbdbe3
1 ! { dg-do compile }
2 ! PR fortran/96024 - ICE in mio_name_expr_t
3 ! Contributed by G.Steinmetz
5 module m
6 implicit none
7 type t
8 character(char(1)) :: a ! { dg-error "must be of INTEGER type" }
9 end type
10 type(t) :: z = t('a')
11 end