aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/parameter_data.f90
blob: b95f9c906969ec447a7c37bf3738a9d5c8e15b25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
! { dg-do compile }
! PR fortran/49278 - ICE when combining DATA with default initialization

program p
  implicit none
  type t
     real :: a
  end type t
  integer, parameter :: b = 42
  type(t), parameter :: z = t(4.0)
  data b   / 666 / ! { dg-error "shall not appear in a DATA statement" }
  data z%a / 3.0 / ! { dg-error "shall not appear in a DATA statement" }
end