Update ChangeLog and version files for release
[official-gcc.git] / gcc / testsuite / gfortran.dg / class_54.f90
blob39c306c83d07a478d30bd56f0ba57397a7134540
1 ! { dg-do compile }
3 ! PR 53718: [4.7/4.8 regression] [OOP] gfortran generates asm label twice in the same output file
5 ! Contributed by Adrian Prantl <adrian@llnl.gov>
7 module m
8 type t
9 end type
10 end module
12 subroutine sub1
13 use m
14 class(t), pointer :: a1
15 end subroutine
17 subroutine sub2
18 use m
19 class(t), pointer :: a2
20 end subroutine
22 ! { dg-final { cleanup-modules "m" } }