Plugins: Add label-text.h to CPPLIB_H so it will be installed [PR115288]
[official-gcc.git] / gcc / testsuite / gfortran.dg / bounds_check_21.f90
blob181d6230413db8229b84ba69231cab2fc594423a
1 ! { dg-do compile }
2 ! { dg-options "-Warray-bounds -O2" }
3 ! PR 92422 - this complained about an array subscript out of bounds.
5 PROGRAM character_warning
7 CHARACTER(len=16) :: word
9 word = 'hi'
10 WRITE(*,*) word
12 END PROGRAM character_warning