view gcc/testsuite/gfortran.dg/transfer_hollerith_1.f90 @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 04ced10e8804
children
line wrap: on
line source

! { dg-do compile }
! { dg-options "-O2" }
! PR 31972, ICE in transfer of Hollerith constant
  integer, dimension(1) :: i
  integer :: j
  i = (/ transfer(4HSOLR, 0) /)

  j = transfer(0, 4HSOLR) ! { dg-error "must not be HOLLERITH" }
end

! { dg-warning "Hollerith constant" "const" { target *-*-* } 6 }

! { dg-warning "Hollerith constant" "const" { target *-*-* } 8 }