* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gfortran.dg / generic_1.f90
blob1cbf4bb8cbcb7e11cc12a935fad415f83cb5c31b
1 ! { dg-do compile }
2 ! reduced testcase from PR 17535
3 module FOO
4 interface BAR
6 subroutine BAR1(X)
7 integer :: X
8 end subroutine
10 subroutine BAR2(X)
11 real :: X
12 end subroutine
14 end interface
15 end module
17 subroutine BAZ(X)
18 use FOO
19 end subroutine