! { dg-do compile }! PR fortran/66245! Original testcase by Gerhard Steinmetz! <gerhard dot steinmetz dot fortran at t-online dot de>program p
type t;end typeclass(t), allocatable :: x
call s
containssubroutine s
select type( x )
class is( )! { dg-error "error in CLASS IS" }end select
end subroutine s
end program p