view gcc/testsuite/gfortran.dg/array_section_3.f90 @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

! { dg-do compile }
!
! PR fortran/54225
!
! Contributed by robb wu
!
program test
  implicit none
  real :: A(2,3)

  print *, A(1, *)  ! { dg-error "Expected array subscript" }
end program

subroutine test2
integer, dimension(2) :: a
a(*) = 1  ! { dg-error "Expected array subscript" }
end