Rebase.
[official-gcc.git] / gcc / testsuite / gfortran.dg / class_4b.f03
bloba5d914a523d3b1b4b3123c6d8e4deef896e554be
1 ! { dg-do compile }
3 ! Test the fix for PR41583, in which the different source files
4 ! would generate the same 'vindex' for different class declared
5 ! types.
7 ! The test comprises class_4a, class_4b class_4c and class_4d.f03
9 ! Contributed by Tobias Burnus <burnus@gcc.gnu.org>
11 module m2
12   use m
13   type, extends(t) :: t2
14   end type t2
15 end module m2
16 ! { dg-final { keep-modules "m2" } }