You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
523 B

! RUN: %S/test_errors.sh %s %t %f18
subroutine s1
!OK: interface followed by type with same name
interface t
end interface
type t
end type
type(t) :: x
x = t()
end subroutine
subroutine s2
!OK: type followed by interface with same name
type t
end type
interface t
end interface
type(t) :: x
x = t()
end subroutine
subroutine s3
type t
end type
interface t
end interface
!ERROR: 't' is already declared in this scoping unit
type t
end type
type(t) :: x
x = t()
end subroutine