blob: c7219fbc2d945410cc3e30a230918216e2bed219 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// xfail-test
mod a {
type rust_task = uint;
extern mod rustrt {
fn rust_task_is_unwinding(rt: *rust_task) -> bool;
}
}
mod b {
type rust_task = bool;
extern mod rustrt {
fn rust_task_is_unwinding(rt: *rust_task) -> bool;
}
}
fn main() { }
|