2011-02-15 Tobias Burnus <burnus@net-b.de>
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr32601_1.f03
blob3e9aa73842ec008f95e7d6278fbc00dec667fc75
1 ! { dg-do compile }
2 ! PR fortran/32601
3 use, intrinsic :: iso_c_binding, only: c_loc, c_ptr
4 implicit none
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" }
10 end