Sign in
rust
/
rust
/
2d3dfece0346f805c6d4fa86c2e8a20ca3eef6ca
/
.
/
tests
/
ui
/
foreign
/
foreign-src
/
foreign.rs
blob: 92a127e8cccfa941da41b07e7cea14712dfc4a44 [
file
]
//@ run-pass
pub
fn
main
()
{
libc
.
puts
(
rustrt
.
str_buf
(
"hello, extern world 1"
));
libc
.
puts
(
rustrt
.
str_buf
(
"hello, extern world 2"
));
libc
.
puts
(
rustrt
.
str_buf
(
"hello, extern world 3"
));
}