aarch64: Add missing ACLE macro for NEON-SVE Bridge
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr93604.f90
blob4040155120c12587235b4e7a2430c2f804923abe
1 ! { dg-do compile }
3 program p
4 type t
5 integer :: a
6 end type
7 type(t) :: x
8 data x /t(z'1')/ ! { dg-error "BOZ" }
9 end