17 lines
282 B
Rust
17 lines
282 B
Rust
// xfail-test
|
|
mod a {
|
|
type rust_task = uint;
|
|
native mod rustrt {
|
|
fn rust_task_is_unwinding(rt: *rust_task) -> bool;
|
|
}
|
|
}
|
|
|
|
mod b {
|
|
type rust_task = bool;
|
|
native mod rustrt {
|
|
fn rust_task_is_unwinding(rt: *rust_task) -> bool;
|
|
}
|
|
}
|
|
|
|
fn main() { }
|