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
c++: constrained lambda error-recovery [PR108972]
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
null_11.f90
blob
040cc260b5dd8c9924cb66d7fb4c12bb2dc9da72
1
! { dg-do compile }
2
!
3
! PR fortran/99651
4
!
5
module
m
6
type
::
CHAR_STAR
7
character
(
len
=
1
),
dimension
(:),
pointer
::
ptr
8
end type
9
type
(
CHAR_STAR
),
parameter
::
CHAR_STAR_NULL
=
CHAR_STAR
(
NULL
())
10
end module
m
11
12
use
m
13
type
typeNode
14
type
(
typeNode
),
pointer
::
Next
=>
null
()
15
end type
typeNode
16
end