PR rtl-optimization/82913
[official-gcc.git] / gcc / testsuite / gfortran.fortran-torture / compile / implicit.f90
blob8a6c4f56d165c46bea823d676118fc80402d74e7
1 implicit integer(a), logical(b-c), real(d-y), integer(z)
2 a = 1_4
3 b = .true.
4 c = b
5 d = 1.0e2
6 y = d
7 z = a
8 end
9 ! test prompted by PR 16161
10 ! we used to match "character (c)" wrongly in the below, confusing the parser
11 subroutine b
12 implicit character (c)
13 end