blob: fdf95b24c63c1a0fdd1df5fcb117b78f9983eb2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
! { dg-do compile }
! PR 92755 - this used to cause an ICE.
! Original test case by Gerhard Steinmetz
program p
type t
end type
type t2
class(t), allocatable :: a(:)
end type
type(t2) :: z
z%a = [z%a]
end
|