aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr103259.f90
blob: f78ff26180eaeafaa78079b1c1d5dadec68c7379 (plain)
1
2
3
4
5
6
7
8
9
10
11
! { dg-do compile }
! PR fortran/103259 - ICE in resolve_common_vars
! Contributed by G.Steinmetz

module m
  integer :: p
  common /c/ p
end
program p ! { dg-error "cannot appear in a COMMON block" }
  use m   ! { dg-error "is also the name of the current program unit" }
end