1 ! RUN: %python %S/test_errors.py %s %flang_fc1
2 ! Test coarray association in CHANGE TEAM statement
11 change
team(t
, x
[*] => y
)
14 !ERROR: Selector in coarray association must name a coarray
15 change
team(t
, x
[*] => 1)
17 !ERROR: Selector in coarray association must name a coarray
18 change
team(t
, x
[*] => z
)
25 real :: y
[10,*], y2
[*], x
[*]
27 !ERROR: The codimensions of 'x' have already been declared
28 change
team(t
, x
[10,*] => y
, x
[*] => y2
)