Fortran: OpenMP 5.0 (in_,task_)reduction clause extensions
[gcc.git] / gcc / testsuite / gfortran.dg / oldstyle_5.f
1 C { dg-do compile }
2 TYPE T
3 INTEGER A(2)/1,2/ ! { dg-error "Invalid old style initialization for derived type component" }
4 END TYPE
5 TYPE S
6 INTEGER B/1/ ! { dg-error "Invalid old style initialization for derived type component" }
7 END TYPE
8 END