AVR: tree-optimization/115307 - Work around isinf bloat from early passes.
[official-gcc.git] / gcc / testsuite / gfortran.dg / assumed_rank_11.f90
blob46dffd0740bc3ca6afbb82b359cf993d405b69e7
1 ! { dg-do compile }
2 ! { dg-options "-fcoarray=single" }
4 ! PR fortran/48820
6 ! Assumed-rank tests
7 subroutine foo(X)
8 integer :: x(..)
9 codimension :: x[*] ! { dg-error "The assumed-rank array 'x' at .1. shall not have a codimension" }
10 end
12 subroutine foo2(X)
13 integer, dimension(..) :: x[*] ! { dg-error "The assumed-rank array at .1. shall not have a codimension" }
14 end
16 subroutine foo3(X)
17 integer, codimension[*] :: x(..) ! { dg-error "The assumed-rank array at .1. shall not have a codimension" }
18 end
20 subroutine foo4(X)
21 integer, codimension[*], dimension(..) :: x ! { dg-error "The assumed-rank array at .1. shall not have a codimension" }
22 end
24 subroutine bar(X)
25 integer :: x[*]
26 dimension :: x(..) ! { dg-error "The assumed-rank array 'x' at .1. shall not have a codimension" }
27 end
29 subroutine foobar(X)
30 integer :: x
31 codimension :: x[*]
32 dimension :: x(..) ! { dg-error "The assumed-rank array 'x' at .1. shall not have a codimension" }
33 end
35 subroutine barfoo(X)
36 integer :: x
37 dimension :: x(..)
38 codimension :: x[*] ! { dg-error "The assumed-rank array 'x' at .1. shall not have a codimension" }
39 end
41 subroutine orig(X) ! { dg-error "may not have the VALUE or CODIMENSION attribute" }
42 integer :: x(..)[*]
43 end
45 subroutine val1(X)
46 integer, value :: x(..) ! { dg-error "VALUE attribute conflicts with DIMENSION attribute" }
47 end
49 subroutine val2(X)
50 integer, value :: x
51 dimension :: x(..) ! { dg-error "VALUE attribute conflicts with DIMENSION attribute" }
52 end