blob: 2cee73c3c02d290a2f39b771c87fde409f9240f9 [file] [log] [blame]
! { dg-compile }
! Tests the fix for PR29634, in which an ICE would occur in the
! interface declaration of a function with an 'old-style' type
! declaration. When fixed, it was found that the error message
! was not very helpful - this was fixed.
!
! Contributed by Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
!
type(foo) function ext_fun()
type foo
integer :: i
end type foo
ext_fun%i = 1
end function ext_fun
type foo
integer :: i
end type foo
interface fun_interface
type(foo) function fun()
end function fun
end interface
interface ext_fun_interface
type(foo) function ext_fun()
end function ext_fun
end interface
type(foo) :: x
x = ext_fun ()
print *, x%i
contains
type(foo) function fun() ! { dg-error "already has an explicit interface" }
end function fun ! { dg-error "Expecting END PROGRAM" }
end