blob: 2c914a997f2d49e9fa6f8008b66d35ca12cbdbe3 [file] [log] [blame]
! { dg-do compile }
! PR fortran/96024 - ICE in mio_name_expr_t
! Contributed by G.Steinmetz
module m
implicit none
type t
character(char(1)) :: a ! { dg-error "must be of INTEGER type" }
end type
type(t) :: z = t('a')
end