[AArch64] PR target/65491: Classify V1TF vectors as AAPCS64 short vectors rather...
[official-gcc.git] / gcc / testsuite / gfortran.dg / typebound_proc_29.f90
blob2650d149368bda7da6407be74676fba71b11b08f
1 ! { dg-do compile }
3 ! PR 55959: [OOP] ICE in in gfc_simplify_expr, at fortran/expr.c:1920
5 ! Contributed by Tilo Schwarz <tilo@tilo-schwarz.de>
7 module pdfs
8 type :: pdf
9 contains
10 procedure, nopass :: getx
11 end type
13 contains
15 real function getx()
16 end function
18 end module
20 program abstract
21 use pdfs
22 type(pdf) pp
23 print pp%getx() ! { dg-error "must be of type default-kind CHARACTER or of INTEGER" }
24 end program
26 ! { dg-final { cleanup-modules "pdfs" } }