2014-04-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gfortran.dg / class_46.f03
blobef718db25d46547767c7b08307d8d858ecefb37f
1 ! { dg-do run }
3 ! PR 50625: [4.6/4.7 Regression][OOP] ALLOCATABLE attribute lost for module CLASS variables
5 ! Contributed by Tobias Burnus <burnus@gcc.gnu.org>
7 module m
8 type t
9 end type t
10 class(t), allocatable :: x
11 end module m
13 use m
14 implicit none
15 if (allocated(x)) call abort()
16 end