blob: 7bc5a492c789494f753c83c959fe49c6e76730e5 [file] [log] [blame]
! { dg-do compile }
program bad_len
implicit none
contains
subroutine sub
character(len = ICE) :: line ! { dg-error "INTEGER expression expected" }
end subroutine
end program