2018-03-15 Steven G. Kargl <kargl@gcc.gnu.org>
[official-gcc.git] / gcc / testsuite / gfortran.dg / where_6.f90
blobc7c43db84237f4a743cdd5936e58234342685aaa
1 ! { dg-do compile }
2 ! { dg-options "-Wcharacter-truncation" }
3 subroutine where_ice (i,j)
5 implicit none
7 character(8) :: y(10,10,2)
9 integer :: i
10 integer :: j
12 character(12) :: txt(5)
13 if (.true.) where (txt(1:3) /= '' ) y(1:3,i,j) = txt(1:3) ! { dg-warning "CHARACTER expression will be truncated" }
15 end subroutine where_ice