PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / bind_c_module.f90
blob6cb7387a46a69fa40c37b8ea64b49d217e599fdd
1 ! { dg-do compile }
2 ! See PR fortran/36251.
3 module a
4 implicit none
5 integer :: i = 42
6 end module a
8 ! Causes ICE
9 module b
10 use iso_c_binding
11 use a
12 implicit none
13 bind(c) :: a ! { dg-error "applied to" }
14 end module b
16 ! Causes ICE
17 module d
18 use a
19 implicit none
20 bind(c) :: a ! { dg-error "applied to" }
21 end module d