summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr93604.f90
blob: 2c695d378290a73adadd3390e701cc7af8794fde (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 "cannot appear in a structure constructor" }
end