comparison gcc/testsuite/gfortran.dg/pr67496.f90 @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 ! PR fortran/67496
2 ! { dg-do compile }
3
4 type :: a
5 end type a
6 type :: b
7 type (a) :: j(1)
8 end type b
9 type(a) :: x
10 type(b) :: y
11 y = b((/x/))
12 end