URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [class_4c.f03] - Rev 694
Compare with Previous | Blame | View Log
! { dg-do link }! { dg-additional-sources class_4a.f03 class_4b.f03 }!! Test the fix for PR41583, in which the different source files! would generate the same 'vindex' for different class declared! types.!! The test comprises class_4a, class_4b and class_4c.f03!! Contributed by Tobias Burnus <burnus@gcc.gnu.org>!use muse m2type,extends(t) :: t3end type t3integer :: iclass(t), allocatable :: aallocate(t3 :: a)select type(a)type is(t)i = 1type is(t2)i = 2type is(t3)i = 3end selectprint *, iend! { dg-final { cleanup-modules "m m2 m3" } }
