OSDN Git Service

2010-06-18 Jerry DeLisle <jvdelisle@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / class_4b.f03
1 ! { dg-do compile }
2 !
3 ! Test the fix for PR41583, in which the different source files
4 ! would generate the same 'vindex' for different class declared
5 ! types.
6 !
7 ! The test comprises class_4a, class_4b class_4c and class_4d.f03
8 !
9 ! Contributed by Tobias Burnus <burnus@gcc.gnu.org>
10 !
11 module m2
12   use m
13   type, extends(t) :: t2
14   end type t2
15 end module m2