c: Fix up pointer types to may_alias structures [PR114493]
[official-gcc.git] / gcc / testsuite / gfortran.dg / hollerith_to_char_parameter_1.f90
blob4c50be4acbbb288ffecbcbb760e16d73c33f207f
1 ! { dg-do compile }
2 ! { dg-options "-Wconversion -std=legacy" }
4 ! Test case contributed by Mark Eggleston <mark.eggleston@codethink.com>
6 program test
7 character(*), parameter :: h = 5hABCDE ! { dg-warning "HOLLERITH to CHARACTER\\(\\*\\)" }
9 write(*,*) h
10 end program