view gcc/testsuite/gfortran.dg/write_check.f90 @ 127:4c56639505ff

fix function.c and add CbC-example Makefile
author mir3636
date Wed, 11 Apr 2018 18:46:58 +0900
parents 04ced10e8804
children
line wrap: on
line source

! { dg-do run }
! { dg-shouldfail "Compile-time specifier checking" }
! Check keyword checking for specifiers
! PR fortran/29452
program test
  implicit none
  character(len=5) :: str
  str = 'yes'
  write(*,'(a)',advance=str) ''
  str = 'no'
  write(*,'(a)',advance=str) ''
  str = 'NOT'
  write(*,'(a)',advance=str) ''
end program test
! { dg-output "At line 13 of file.*" }
! { dg-output "Bad ADVANCE parameter in data transfer statement" }