2011-06-30 13:22:10 -05:00
|
|
|
#[cfg(bogus)]
|
2011-07-27 07:19:39 -05:00
|
|
|
const b: bool = false;
|
2011-06-30 13:22:10 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const b: bool = true;
|
2011-06-30 13:22:10 -05:00
|
|
|
|
|
|
|
#[cfg(bogus)]
|
2011-11-16 22:49:38 -06:00
|
|
|
#[abi = "cdecl"]
|
|
|
|
native mod rustrt {
|
2011-07-27 07:19:39 -05:00
|
|
|
// This symbol doesn't exist and would be a link error if this
|
|
|
|
// module was translated
|
|
|
|
fn bogus();
|
2011-06-30 13:22:10 -05:00
|
|
|
}
|
|
|
|
|
2011-11-16 22:49:38 -06:00
|
|
|
#[abi = "cdecl"]
|
|
|
|
native mod rustrt { }
|
2011-06-30 13:22:10 -05:00
|
|
|
|
|
|
|
#[cfg(bogus)]
|
|
|
|
type t = int;
|
|
|
|
|
|
|
|
type t = bool;
|
|
|
|
|
|
|
|
#[cfg(bogus)]
|
2012-01-19 20:31:08 -06:00
|
|
|
enum tg { foo, }
|
2011-06-30 13:22:10 -05:00
|
|
|
|
2012-01-19 20:31:08 -06:00
|
|
|
enum tg { bar, }
|
2011-06-30 13:22:10 -05:00
|
|
|
|
|
|
|
#[cfg(bogus)]
|
2012-05-15 22:33:59 -05:00
|
|
|
class r {
|
|
|
|
new(i:int) {}
|
|
|
|
}
|
2011-06-30 13:22:10 -05:00
|
|
|
|
2012-05-15 22:33:59 -05:00
|
|
|
class r {
|
|
|
|
new(i:int) {}
|
|
|
|
}
|
2011-06-30 13:22:10 -05:00
|
|
|
|
|
|
|
#[cfg(bogus)]
|
|
|
|
mod m {
|
2011-07-27 07:19:39 -05:00
|
|
|
// This needs to parse but would fail in typeck. Since it's not in
|
|
|
|
// the current config it should not be typechecked.
|
|
|
|
fn bogus() { ret 0; }
|
2011-06-30 13:22:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
mod m {
|
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
// Submodules have slightly different code paths than the top-level
|
|
|
|
// module, so let's make sure this jazz works here as well
|
|
|
|
#[cfg(bogus)]
|
|
|
|
fn f() { }
|
2011-06-30 13:22:10 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
fn f() { }
|
2011-06-30 13:22:10 -05:00
|
|
|
}
|
|
|
|
|
2011-06-29 19:38:40 -05:00
|
|
|
// Since the bogus configuration isn't defined main will just be
|
|
|
|
// parsed, but nothing further will be done with it
|
|
|
|
#[cfg(bogus)]
|
|
|
|
fn main() { fail }
|
|
|
|
|
2011-06-30 13:22:10 -05:00
|
|
|
fn main() {
|
2011-07-27 07:19:39 -05:00
|
|
|
// Exercise some of the configured items in ways that wouldn't be possible
|
|
|
|
// if they had the bogus definition
|
|
|
|
assert (b);
|
|
|
|
let x: t = true;
|
|
|
|
let y: tg = bar;
|
2011-06-30 15:04:02 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
test_in_fn_ctxt();
|
2011-06-30 13:22:10 -05:00
|
|
|
}
|
|
|
|
|
2011-06-30 15:04:02 -05:00
|
|
|
fn test_in_fn_ctxt() {
|
2011-07-27 07:19:39 -05:00
|
|
|
#[cfg(bogus)]
|
|
|
|
fn f() { fail }
|
|
|
|
fn f() { }
|
|
|
|
f();
|
|
|
|
|
|
|
|
#[cfg(bogus)]
|
|
|
|
const i: int = 0;
|
|
|
|
const i: int = 1;
|
|
|
|
assert (i == 1);
|
2011-06-30 15:04:02 -05:00
|
|
|
}
|
2011-07-05 15:29:21 -05:00
|
|
|
|
|
|
|
mod test_native_items {
|
2011-11-16 22:49:38 -06:00
|
|
|
#[abi = "cdecl"]
|
|
|
|
native mod rustrt {
|
2011-07-27 07:19:39 -05:00
|
|
|
#[cfg(bogus)]
|
2011-08-31 20:47:29 -05:00
|
|
|
fn vec_from_buf_shared<T>(ptr: *T, count: uint) -> [T];
|
|
|
|
fn vec_from_buf_shared<T>(ptr: *T, count: uint) -> [T];
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
2011-08-10 11:27:22 -05:00
|
|
|
}
|