blob: 45b5d26627fa7f761b278d398c2cc6980c27924d [file] [log] [blame]
! { dg-do compile }
!
! Error checking for the intrinsic functions SAME_TYPE_AS and EXTENDS_TYPE_OF.
!
! Contributed by Janus Weil <janus@gcc.gnu.org>
type :: t1
integer :: i
end type
type :: ts
sequence
integer :: j
end type
TYPE(t1) :: x1
TYPE(ts) :: x2
integer :: i
print *, SAME_TYPE_AS (i,x1) ! { dg-error "must be of a derived type" }
print *, SAME_TYPE_AS (x1,x2) ! { dg-error "must be of an extensible type" }
print *, EXTENDS_TYPE_OF (i,x1) ! { dg-error "must be of a derived type" }
print *, EXTENDS_TYPE_OF (x1,x2) ! { dg-error "must be of an extensible type" }
end