9 lines
112 B
Rust
9 lines
112 B
Rust
#[abi = "cdecl"]
|
|
native mod rustrt {
|
|
fn unsupervise();
|
|
}
|
|
|
|
fn main() {
|
|
let _foo = rustrt::unsupervise;
|
|
}
|