Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gfortran.dg / generic_1.f90
blob12077dab59fdaf229d8e6c974c03e931d0efb9df
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
21 ! { dg-final { cleanup-modules "FOO" } }