Plugins: Add label-text.h to CPPLIB_H so it will be installed [PR115288]
[official-gcc.git] / gcc / testsuite / gfortran.dg / c_loc_tests_3.f03
blob0cd56a684647efaebd2bded11baada833f45b594
1 ! { dg-do compile }
2 use iso_c_binding
3 implicit none
4 character(kind=c_char,len=256),target :: arg
5 type(c_ptr),pointer :: c
6 c = c_loc(arg) ! OK since Fortran 2003, Tech Corrigenda 5; IR F03/0129
8 end