aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/array_constructor_2.f90
blob: ffed1f0fb619df961d29306710eca39ae93aab9e (plain)
1
2
3
4
5
6
7
8
! { dg-do compile }
! Check that array constructor delimiters match
program bracket_array_constr_2
    implicit none
    integer :: a(4)
    a = (/ 1, 2, 3, 4 ] ! { dg-error "array constructor" }
    a = (/ [ 1, 2, 3, 4 /) ] ! { dg-error "array constructor" }
end program bracket_array_constr_2