summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr93604.f90
blob: 4040155120c12587235b4e7a2430c2f804923abe (plain)
1
2
3
4
5
6
7
8
9
10
! { dg-do compile }

program p
   type t
      integer :: a
   end type
   type(t) :: x
   data x /t(z'1')/ ! { dg-error "BOZ" }
end