aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/alloc_comp_initializer_4.f03
blob: 2356e16ddb9dc4dbf68f6a0b0284779bcc4a6152 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
! { dg-do run }
! Fixed by the patch for PRs 60357 and 61275
!
! Contributed by Stefan Mauerberger  <stefan.mauerberger@gmail.com>
!
PROGRAM main
  IMPLICIT NONE
  TYPE :: test_typ
    REAL, ALLOCATABLE :: a
  END TYPE
  TYPE(test_typ) :: my_test_typ
  my_test_typ = test_typ (a = 1.0)
  if (abs (my_test_typ%a - 1.0) .gt. 1e-6) STOP 1
END PROGRAM main