PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr80752.f90
blob00a4b33d29ad7370b03632e2a0689545f5ff58af
1 ! { dg-do compile }
2 ! PR fortran/80752
3 module exchange_utils
5 implicit none
7 integer, parameter, public :: knd = 8
9 type, private :: a
10 logical :: add_vs98 = 0.0_knd ! { dg-error "Can't convert" }
11 end type a
13 type, private :: x_param_t
14 type(a) :: m05_m06
15 end type x_param_t
17 type(x_param_t), public, save :: x_param
19 end module exchange_utils