! { dg-do compile } ! PR fortran/66245 ! Original testcase by Gerhard Steinmetz ! program p type t; end type class(t), allocatable :: x call s contains subroutine s select type ( x ) class is ( ) ! { dg-error "error in CLASS IS" } end select end subroutine s end program p