2 ! Verify that an error is correctly reported if multiple identifiers are given
3 ! with a bind(c) statement that has a NAME= specifier.
7 integer(c_int), bind(C, name="") :: a,b ! { dg-error "Multiple identifiers" }
8 integer(c_int), bind(C, name="bob") :: c,d ! { dg-error "Multiple identifiers" }
10 bind(c, name="foo") :: e,f ! { dg-error "Multiple identifiers" }