aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/module_variable_1.f90
blob: 38b915e6bef2d767c9b19be3fda915b0390ba5de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
! { dg-do compile }
! { dg-options "-Wall" }
! { dg-require-visibility "" }
module foo
  integer, private :: i  ! { dg-warning "Unused PRIVATE" }
  integer, private :: j = 0
contains
  subroutine bar
    j = j + 1
  end subroutine bar
end module foo

module bar
  private
  integer :: i ! { dg-warning "Unused PRIVATE" }
end module bar