summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/boz_8.f90
blob: b1d966f530d73e45ef1109236ffc20fd0c08633d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
! { dg-do compile }
! { dg-options "-std=f2003" }
!
! PR fortran/34342
!
! Diagnose BOZ literal for non-integer variables in
! a DATA statement. Cf. Fortran 2003, 5.2.5 DATA statement:
! "If a data-stmt-constant is a boz-literal-constant, the
!  corresponding variable shall be of type integer."
!
real :: r
integer :: i
data i/z'111'/
data r/z'4455'/   ! { dg-error "BOZ literal constant" }
r = z'FFFF'       ! { dg-error "BOZ literal constant" }
i = z'4455'       ! { dg-error "BOZ literal constant" }
r = real(z'FFFFFFFFF')
end