aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/array_constructor_1.f90
blob: 20452f3d3fa8f740e4a94b73317fe191710a402f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
! { dg-do run }
! Check that [...] style array constructors work
program bracket_array_constructor
    implicit none
    integer :: a(4), i

    a = [ 1, 2, 3, 4 ]  ! { dg-warning "array constructor" }
    do i = 1, size(a)
        if (a(i) /= i) call abort()
    end do

    a = [ (/ 1, 2, 3, 4 /) ]  ! { dg-warning "array constructor" }
    do i = 1, size(a)
        if (a(i) /= i) call abort()
    end do

end program bracket_array_constructor