1! { dg-do compile }
2! Verifies that the c_loc scalar pointer tests recognize the string of length
3! greater than one as not being allowable for the parameter to c_loc.
4module x
5use iso_c_binding
6contains
7SUBROUTINE glutInit_f03()
8  TYPE(C_PTR), DIMENSION(1), TARGET :: argv=C_NULL_PTR
9  character(kind=c_char, len=5), target :: string="hello"
10  argv(1)=C_LOC(string) ! OK since Fortran 2003, Tech Corrigenda 5; IR F03/0129
11END SUBROUTINE
12end module x
13
14