OSDN Git Service

2010-04-24 Kai Tietz <kai.tietz@onevision.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / pr32601_1.f03
1 ! { dg-do compile }
2 ! PR fortran/32601
3 use, intrinsic :: iso_c_binding, only: c_loc, c_ptr
4 implicit none
5
6 ! This was causing an ICE, but is an error because the argument to C_LOC 
7 ! needs to be a variable.
8 print *, c_loc(4) ! { dg-error "not a variable" }
9
10 end