aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/structure_constructor_10.f90
blob: 3231571244add391ba5b20fa88ed398db8f5fbb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
! { dg-do compile }
!
! PR 41070: [4.5 Regression] Error: Components of structure constructor '' at (1) are PRIVATE
!
! Contributed by Michael Richmond <michael.a.richmond@nasa.gov>

MODULE cdf_aux_mod
IMPLICIT NONE

TYPE :: one_parameter
  CHARACTER (8) :: name
END TYPE one_parameter

TYPE :: the_distribution
  CHARACTER (8) :: name
END TYPE the_distribution

TYPE (the_distribution), PARAMETER :: the_beta = the_distribution('cdf_beta')
END MODULE cdf_aux_mod

SUBROUTINE cdf_beta()
  USE cdf_aux_mod
  IMPLICIT NONE
  CALL check_complements(the_beta%name)
END SUBROUTINE cdf_beta