repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* intrinsic.c: Add EXECUTE_COMMAND_LINE intrinsic.
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
pr32601_1.f03
blob
3e9aa73842ec008f95e7d6278fbc00dec667fc75
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