4 ! - PARAMETER and BIND(C), PR fortran/33310
5 ! - INTRINSIC and ENTRY, PR fortran/33284
10 entry cos(x
) ! { dg-error "ENTRY attribute conflicts with INTRINSIC" }
18 TYPE, bind(C
) :: the_distribution
19 INTEGER(c_int
) :: parameters(1)
20 END TYPE the_distribution
21 TYPE (the_distribution
), parameter, bind(C
) :: & ! { dg-error "PARAMETER attribute conflicts with BIND.C." }
22 the_beta
= the_distribution((/0/))