aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr70870_1.f90
blob: eeec92143f43b873d33c76f15c0a958ad011f2aa (plain)
1
2
3
4
5
6
7
8
9
10
! { dg-do compile }
! { dg-options "-std=gnu" }
! PR fortran/70870
! Contributed by Vittorio Zecca <zeccav at gmail dot com >
      type t
       integer :: g=0   ! default initialization
      end type
      type(t) :: v2
      data v2/t(2)/     ! { dg-error "default initialization shall not" }
      end