aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/common_29.f90
blob: 66f2a18a483629263d3ab975169ed57067e044a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
! { dg-do compile }
! PR fortran/108454
!
! Contributed by G.Steinmetz

module m
  type t
  end type
contains
  subroutine s
    common t
  end
end

module m2
  implicit none
  type t
  end type
contains
  subroutine s
    real :: t
    common /com/ t
  end
end

module m3
  type t
  end type
contains
  subroutine s
    type(t) :: x  ! { dg-error "cannot be host associated at .1." }
    common t      ! { dg-error "incompatible object of the same name" }
  end
end