Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
cc09f18e3bd415740aef36c100c8c59378947344
/
.
/
examples
/
ambiguous_deps
/
nonstandard_name_bin.rs
blob: 2c07702673b0fa2abba4022759f92b28f4cdde52 [
file
] [
log
] [
blame
]
use
std
::
os
::
raw
::
c_int
;
extern
"C"
{
pub
fn
func
()
->
c_int
;
}
fn
main
()
{
println
!(
"hi {}"
,
unsafe
{
func
()
});
}