OSDN Git Service

gcc/fortran:
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / bind_c_usage_5.f03
1 ! { dg-do compile }
2 module bind_c_usage_5
3 use, intrinsic :: iso_c_binding
4
5 bind(c) c3, c4 
6 integer(c_int), bind(c) :: c3 ! { dg-error "Duplicate BIND attribute" }
7 integer(c_int) :: c4
8 end module bind_c_usage_5