Break circular dependency between FIR dialect and utilities
[llvm-project.git] / flang / test / Semantics / declarations03.f90
blob3459b2287b2badd800380ff11c85429aafbe797e
1 ! RUN: %python %S/test_errors.py %s %flang_fc1
2 ! test bind(c) name conflict
4 module m
6 integer :: x, y, z, w, i, j, k
8 !ERROR: Two entities have the same global name 'aa'
9 common /blk1/ x, /blk2/ y
10 bind(c, name="aa") :: /blk1/, /blk2/
12 integer :: t
13 !ERROR: Two entities have the same global name 'bb'
14 common /blk3/ z
15 bind(c, name="bb") :: /blk3/, t
17 integer :: t2
18 !ERROR: Two entities have the same global name 'cc'
19 common /blk4/ w
20 bind(c, name="cc") :: t2, /blk4/
22 !ERROR: The entity 'blk5' has multiple BIND names
23 common /blk5/ i
24 bind(c, name="dd") :: /blk5/
25 bind(c, name="ee") :: /blk5/
27 !ERROR: Two entities have the same global name 'ff'
28 common /blk6/ j, /blk7/ k
29 bind(c, name="ff") :: /blk6/
30 bind(c, name="ff") :: /blk7/
32 !ERROR: The entity 's1' has multiple BIND names
33 integer :: s1
34 bind(c, name="gg") :: s1
35 !ERROR: BIND_C attribute was already specified on 's1'
36 bind(c, name="hh") :: s1
38 !ERROR: Two entities have the same global name 'ii'
39 integer :: s2, s3
40 bind(c, name="ii") :: s2
41 bind(c, name="ii") :: s3
43 !ERROR: The entity 's4' has multiple BIND names
44 integer, bind(c, name="ss1") :: s4
45 !ERROR: BIND_C attribute was already specified on 's4'
46 bind(c, name="jj") :: s4
48 !ERROR: The entity 's5' has multiple BIND names
49 bind(c, name="kk") :: s5
50 !ERROR: BIND_C attribute was already specified on 's5'
51 integer, bind(c, name="ss2") :: s5
53 end
55 subroutine common1()
56 real :: x
57 common /com/ x
58 bind(c, name='xcom') /com/ ! no error
59 end subroutine
61 subroutine common2()
62 real :: x
63 common /com/ x
64 bind(c, name='xcom') /com/ ! no error
65 end subroutine
67 module a
68 integer, bind(c, name="int") :: i
69 end module
71 module b
72 !ERROR: Two entities have the same global name 'int'
73 integer, bind(c, name="int") :: i
74 end module