aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/io_real_boz2.f90
blob: b62385f02a628810230050d31f8cbbf25f7fddfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
! { dg-do run }
! { dg-shouldfail "Real BOZ not allowed" }
! { dg-options "-fall-intrinsics -std=f2003" }
! Test for invalid (F95/F2003) writing of real with octal edit descriptor
! PR fortran/29625
program real_boz
  implicit none
  real(4)           :: r
  character(len=100) :: str

  r = 325.56
  write(str,'(o0)') r
end program real_boz
! { dg-output "At line 12 .*" }
! { dg-output "Expected INTEGER .* in formatted transfer, got REAL" }