blob: 5c8e0e1d798b13e8c9d9cb16eba5a8b89f92e5df [file] [log] [blame]
! RUN: %S/test_errors.sh %s %t %f18
subroutine s1
implicit integer(a-c)
!ERROR: More than one implicit type specified for 'c'
implicit real(c-g)
end
subroutine s2
implicit integer(a-c)
implicit real(8)(d)
!ERROR: More than one implicit type specified for 'a'
implicit integer(f), real(a)
end