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
PR tree-optimization/86415 - strlen() not folded for substrings within constant arrays
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
class_46.f03
blob
04a419fc45f73472ed1ac91d00c1ba01685b9a1d
1
! { dg-do run }
2
!
3
! PR 50625: [4.6/4.7 Regression][OOP] ALLOCATABLE attribute lost for module CLASS variables
4
!
5
! Contributed by Tobias Burnus <burnus@gcc.gnu.org>
6
7
module m
8
type t
9
end type t
10
class(t), allocatable :: x
11
end module m
12
13
use m
14
implicit none
15
if (allocated(x)) STOP 1
16
end