blob: 53a1a808a7b5206aa56d54f2b4b866a5be772ca1 (
plain)
1
2
3
4
5
6
7
8
9
|
! { dg-do compile }
! PR fortran/91660
! Code contributed by Gerhard Steinmetz
program p
type t
end type
type (t x ! { dg-error "Malformed type-spec" }
x = t() ! { dg-error "Cannot convert" }
end
|