[to-be-committed] [RISC-V] Use Zbkb for general 64 bit constants when profitable
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr78571.f90
blob8e377567eec822c592e53bf6f1e90462d8a77ec7
1 ! { dg-do compile }
2 ! { dg-options "-std=gnu" }
3 ! PR fortran/78571
4 program p
5 type t
6 character :: c
7 end type
8 character :: x = t('a') ! { dg-error "convert TYPE" }
9 data x /'b'/
10 end