blob: c624de22d36f055b260a9ac7ec1055d60685794e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
! { dg-do run }
!
! PR 40996: [F03] ALLOCATABLE scalars
!
! Contributed by Janus Weil <janus@gcc.gnu.org>
implicit none
type :: t
integer, allocatable :: i
end type
type(t)::x
allocate(x%i)
x%i = 13
print *,x%i
if (.not. allocated(x%i)) call abort()
deallocate(x%i)
if (allocated(x%i)) call abort()
end
|