2 ! { dg-options "-std=f2003" }
6 ! Diagnose BOZ literal for non-integer variables in
7 ! a DATA statement. Cf. Fortran 2003, 5.2.5 DATA statement:
8 ! "If a data-stmt-constant is a boz-literal-constant, the
9 ! corresponding variable shall be of type integer."
14 data r
/z
'4455'/ ! { dg-error "BOZ literal constant" }
15 r
= z
'FFFF' ! { dg-error "BOZ literal constant" }
16 i
= z
'4455' ! { dg-error "BOZ literal constant" }
17 r
= real(z
'FFFFFFFFF')