repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2017-12-08 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
namelist_1.f90
blob
8ca28dc96ab22791f0988b73db0be77968eb0c9a
1
! { dg-do compile }
2
! Check that private entities in public namelists are rejected
3
module
namelist_1
4
public
5
integer
,
private
::
x
6
namelist
/
n
/
x
! { dg-error "cannot be member of PUBLIC namelist" }
7
end module