aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/common_28.f90
blob: 9b583b9948df05ab6c6d4131dcea152e63940400 (plain)
1
2
3
4
5
6
7
! { dg-do compile }
! PR fortran/32986 - Improve diagnostic message for COMMON with automatic object

function a(n)
  real :: x(n) ! { dg-error "Automatic object" }
  common /c/ x ! { dg-error "cannot appear in COMMON" }
end function