PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / binding_label_tests_29.f90
blobd4b6cfbc04ba22beacd3fb1ff67ec2cbf5628924
1 ! { dg-do compile }
2 ! PR53478
4 module test_bug ! { dg-error "Procedure 'test' with binding label 'Test_Bug' at .1. uses the same global identifier as entity at .2." }
6 use, intrinsic :: ISO_C_BINDING
8 contains
10 subroutine test() bind (C, name = "Test_Bug") ! { dg-error "Procedure 'test' with binding label 'Test_Bug' at .1. uses the same global identifier as entity at .2." }
11 end subroutine
13 end module