1 ! RUN: %S/test_errors.sh %s %t %flang_fc1
3 ! Test coarray association in CHANGE TEAM statement
12 change
team(t
, x
[*] => y
)
15 !ERROR: Selector in coarray association must name a coarray
16 change
team(t
, x
[*] => 1)
18 !ERROR: Selector in coarray association must name a coarray
19 change
team(t
, x
[*] => z
)
26 real :: y
[10,*], y2
[*], x
[*]
28 !ERROR: The codimensions of 'x' have already been declared
29 change
team(t
, x
[10,*] => y
, x
[*] => y2
)