aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/transfer_hollerith_1.f90
blob: 2ebff5a573b2919acaf78c32da1bc7d1c2b67d21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
! { 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 }