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
* intrinsic.c: Add EXECUTE_COMMAND_LINE intrinsic.
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
namelist_3.f90
blob
68cc7d558ffd4de4d49683b731f130986ca01752
1
! { dg-do compile }
2
! Check that a pointer cannot be a member of a namelist
3
program
namelist_3
4
integer
,
pointer
::
x
5
allocate
(
x
)
6
namelist
/
n
/
x
! { dg-error "NAMELIST attribute conflicts with POINTER attribute" "" }
7
end program
namelist_3