11 lines
126 B
Rust
11 lines
126 B
Rust
/*
|
|
Can we bind native things?
|
|
*/
|
|
|
|
#[abi = "cdecl"]
|
|
native mod rustrt {
|
|
fn do_gc();
|
|
}
|
|
|
|
fn main() { bind rustrt::do_gc(); }
|