2012-12-13 15:05:22 -06:00
|
|
|
// xfail-fast
|
|
|
|
|
2012-12-10 19:32:48 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-11-01 17:48:37 -05:00
|
|
|
// Crate use statements
|
|
|
|
#[cfg(bogus)]
|
|
|
|
use flippity;
|
|
|
|
|
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"]
|
2012-07-03 18:11:00 -05:00
|
|
|
extern 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
|
2013-01-30 17:56:40 -06:00
|
|
|
pub fn bogus();
|
2011-06-30 13:22:10 -05:00
|
|
|
}
|
|
|
|
|
2011-11-16 22:49:38 -06:00
|
|
|
#[abi = "cdecl"]
|
2013-01-30 17:56:40 -06:00
|
|
|
extern 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-08-15 20:46:55 -05:00
|
|
|
struct r {
|
2012-09-06 21:40:15 -05:00
|
|
|
i: int,
|
2012-09-05 17:58:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(bogus)]
|
|
|
|
fn r(i:int) -> r {
|
|
|
|
r {
|
|
|
|
i: i
|
|
|
|
}
|
2012-05-15 22:33:59 -05:00
|
|
|
}
|
2011-06-30 13:22:10 -05:00
|
|
|
|
2012-08-15 20:46:55 -05:00
|
|
|
struct r {
|
2012-09-06 21:40:15 -05:00
|
|
|
i: int,
|
2012-09-05 17:58:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn r(i:int) -> r {
|
|
|
|
r {
|
|
|
|
i: i
|
|
|
|
}
|
2012-05-15 22:33:59 -05:00
|
|
|
}
|
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.
|
2013-01-30 17:56:40 -06:00
|
|
|
pub fn bogus() { return 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)]
|
2013-01-30 17:56:40 -06:00
|
|
|
pub fn f() { }
|
2011-06-30 13:22:10 -05:00
|
|
|
|
2013-01-30 17:56:40 -06:00
|
|
|
pub 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)]
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() { die!() }
|
2011-06-29 19:38:40 -05:00
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub 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)]
|
2013-01-31 19:51:01 -06:00
|
|
|
fn f() { die!() }
|
2011-07-27 07:19:39 -05:00
|
|
|
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
|
|
|
|
2012-06-26 18:18:37 -05:00
|
|
|
mod test_foreign_items {
|
2011-11-16 22:49:38 -06:00
|
|
|
#[abi = "cdecl"]
|
2013-01-30 17:56:40 -06:00
|
|
|
pub extern mod rustrt {
|
2011-07-27 07:19:39 -05:00
|
|
|
#[cfg(bogus)]
|
2013-01-30 17:56:40 -06:00
|
|
|
pub fn rust_getcwd() -> ~str;
|
|
|
|
pub fn rust_getcwd() -> ~str;
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
2011-08-10 11:27:22 -05:00
|
|
|
}
|
2012-07-09 16:02:39 -05:00
|
|
|
|
|
|
|
mod test_use_statements {
|
|
|
|
#[cfg(bogus)]
|
|
|
|
use flippity_foo;
|
|
|
|
|
2013-01-30 17:56:40 -06:00
|
|
|
pub extern mod rustrt {
|
2012-07-09 16:02:39 -05:00
|
|
|
#[cfg(bogus)]
|
|
|
|
use flippity_foo;
|
|
|
|
}
|
2012-11-01 17:48:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
mod test_methods {
|
|
|
|
struct Foo {
|
|
|
|
bar: uint
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Foo: Fooable {
|
|
|
|
#[cfg(bogus)]
|
|
|
|
static fn what() { }
|
|
|
|
|
|
|
|
static fn what() { }
|
|
|
|
|
|
|
|
#[cfg(bogus)]
|
|
|
|
fn the() { }
|
|
|
|
|
|
|
|
fn the() { }
|
|
|
|
}
|
|
|
|
|
|
|
|
trait Fooable {
|
|
|
|
#[cfg(bogus)]
|
|
|
|
static fn what();
|
|
|
|
|
|
|
|
static fn what();
|
|
|
|
|
|
|
|
#[cfg(bogus)]
|
|
|
|
fn the();
|
|
|
|
|
|
|
|
fn the();
|
|
|
|
}
|
|
|
|
}
|