summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr77612.f90
blob: 7bc5a492c789494f753c83c959fe49c6e76730e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
! { dg-do compile }

program bad_len

  implicit none

contains

  subroutine sub
    character(len = ICE) :: line ! { dg-error "INTEGER expression expected" }
  end subroutine

end program