PR c/29467
[official-gcc.git] / gcc / testsuite / gfortran.dg / class_51.f90
blob1fdad92dd04e53e55a77bffd32332f7bfb15e072
1 ! { dg-do compile }
2 ! { dg-options "-fdump-tree-original" }
4 ! PR fortran/52270
6 ! From IR F08/0073 by Malcolm Cohen
9 Program m013
10 Type t
11 Real c
12 End Type
13 Type(t),Target :: x
14 Call sub(x)
15 Print *,x%c
16 if (x%c /= 3) call abort ()
17 Contains
18 Subroutine sub(p)
19 Class(t),Pointer,Intent(In) :: p
20 p%c = 3
21 End Subroutine
22 End Program
24 ! { dg-final { scan-tree-dump-times "sub \\(&class" 1 "original" } }
25 ! { dg-final { cleanup-tree-dump "original" } }