view gcc/testsuite/gfortran.dg/logical_temp_io.f90 @ 132:d34655255c78

update gcc-8.2
author mir3636
date Thu, 25 Oct 2018 10:21:07 +0900
parents 84e7813d76e9
children
line wrap: on
line source

! { dg-do run }
! PR 82869
! A temp variable of type logical was incorrectly transferred
! to the I/O library as a logical type of a different kind.
program pr82869
  use, intrinsic :: iso_c_binding
  type(c_ptr) :: p = c_null_ptr
  character(len=4) :: s
  write (s, *) c_associated(p), c_associated(c_null_ptr)
  if (s /= ' F F') then
     STOP 1
  end if
end program pr82869