mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
2080474c75
Fix #54047
159 lines
2.8 KiB
Rust
159 lines
2.8 KiB
Rust
// Copyright 2012-2014 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.
|
|
|
|
// run-pass
|
|
#![allow(non_upper_case_globals)]
|
|
#![allow(non_camel_case_types)]
|
|
#![allow(improper_ctypes)]
|
|
|
|
// Crate use statements
|
|
|
|
#[cfg(bogus)]
|
|
use flippity;
|
|
|
|
#[cfg(bogus)]
|
|
static b: bool = false;
|
|
|
|
static b: bool = true;
|
|
|
|
mod rustrt {
|
|
#[cfg(bogus)]
|
|
extern {
|
|
// This symbol doesn't exist and would be a link error if this
|
|
// module was codegened
|
|
pub fn bogus();
|
|
}
|
|
|
|
extern {}
|
|
}
|
|
|
|
#[cfg(bogus)]
|
|
type t = isize;
|
|
|
|
type t = bool;
|
|
|
|
#[cfg(bogus)]
|
|
enum tg { foo, }
|
|
|
|
enum tg { bar, }
|
|
|
|
#[cfg(bogus)]
|
|
struct r {
|
|
i: isize,
|
|
}
|
|
|
|
#[cfg(bogus)]
|
|
fn r(i:isize) -> r {
|
|
r {
|
|
i: i
|
|
}
|
|
}
|
|
|
|
struct r {
|
|
i: isize,
|
|
}
|
|
|
|
fn r(i:isize) -> r {
|
|
r {
|
|
i: i
|
|
}
|
|
}
|
|
|
|
#[cfg(bogus)]
|
|
mod m {
|
|
// This needs to parse but would fail in typeck. Since it's not in
|
|
// the current config it should not be typechecked.
|
|
pub fn bogus() { return 0; }
|
|
}
|
|
|
|
mod m {
|
|
// Submodules have slightly different code paths than the top-level
|
|
// module, so let's make sure this jazz works here as well
|
|
#[cfg(bogus)]
|
|
pub fn f() { }
|
|
|
|
pub fn f() { }
|
|
}
|
|
|
|
// Since the bogus configuration isn't defined main will just be
|
|
// parsed, but nothing further will be done with it
|
|
#[cfg(bogus)]
|
|
pub fn main() { panic!() }
|
|
|
|
pub fn main() {
|
|
// 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 = tg::bar;
|
|
|
|
test_in_fn_ctxt();
|
|
}
|
|
|
|
fn test_in_fn_ctxt() {
|
|
#[cfg(bogus)]
|
|
fn f() { panic!() }
|
|
fn f() { }
|
|
f();
|
|
|
|
#[cfg(bogus)]
|
|
static i: isize = 0;
|
|
static i: isize = 1;
|
|
assert_eq!(i, 1);
|
|
}
|
|
|
|
mod test_foreign_items {
|
|
pub mod rustrt {
|
|
extern {
|
|
#[cfg(bogus)]
|
|
pub fn write() -> String;
|
|
pub fn write() -> String;
|
|
}
|
|
}
|
|
}
|
|
|
|
mod test_use_statements {
|
|
#[cfg(bogus)]
|
|
use flippity_foo;
|
|
}
|
|
|
|
mod test_methods {
|
|
struct Foo {
|
|
bar: usize
|
|
}
|
|
|
|
impl Fooable for Foo {
|
|
#[cfg(bogus)]
|
|
fn what(&self) { }
|
|
|
|
fn what(&self) { }
|
|
|
|
#[cfg(bogus)]
|
|
fn the(&self) { }
|
|
|
|
fn the(&self) { }
|
|
}
|
|
|
|
trait Fooable {
|
|
#[cfg(bogus)]
|
|
fn what(&self);
|
|
|
|
fn what(&self);
|
|
|
|
#[cfg(bogus)]
|
|
fn the(&self);
|
|
|
|
fn the(&self);
|
|
}
|
|
}
|
|
|
|
#[cfg(any())]
|
|
mod nonexistent_file; // Check that unconfigured non-inline modules are not loaded or parsed.
|