2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2018-09-25 16:51:35 -05:00
|
|
|
#![allow(dead_code)]
|
2018-08-31 08:02:01 -05:00
|
|
|
#![allow(non_upper_case_globals)]
|
|
|
|
#![allow(non_camel_case_types)]
|
|
|
|
#![allow(improper_ctypes)]
|
|
|
|
|
2012-11-01 17:48:37 -05:00
|
|
|
// Crate use statements
|
2015-03-22 15:13:15 -05:00
|
|
|
|
2012-11-01 17:48:37 -05:00
|
|
|
#[cfg(bogus)]
|
|
|
|
use flippity;
|
|
|
|
|
2011-06-30 13:22:10 -05:00
|
|
|
#[cfg(bogus)]
|
2013-03-22 16:00:15 -05:00
|
|
|
static b: bool = false;
|
2011-06-30 13:22:10 -05:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
static b: bool = true;
|
2011-06-30 13:22:10 -05:00
|
|
|
|
2013-03-05 16:42:58 -06:00
|
|
|
mod rustrt {
|
|
|
|
#[cfg(bogus)]
|
2020-09-01 16:12:52 -05:00
|
|
|
extern "C" {
|
2013-03-05 16:42:58 -06:00
|
|
|
// This symbol doesn't exist and would be a link error if this
|
2018-05-08 08:10:16 -05:00
|
|
|
// module was codegened
|
2013-03-05 16:42:58 -06:00
|
|
|
pub fn bogus();
|
|
|
|
}
|
2013-05-03 18:25:04 -05:00
|
|
|
|
2020-09-01 16:12:52 -05:00
|
|
|
extern "C" {}
|
2011-06-30 13:22:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(bogus)]
|
2015-03-25 19:06:52 -05:00
|
|
|
type t = isize;
|
2011-06-30 13:22:10 -05:00
|
|
|
|
|
|
|
type t = bool;
|
|
|
|
|
|
|
|
#[cfg(bogus)]
|
2020-09-01 16:12:52 -05:00
|
|
|
enum tg {
|
|
|
|
foo,
|
|
|
|
}
|
2011-06-30 13:22:10 -05:00
|
|
|
|
2020-09-01 16:12:52 -05:00
|
|
|
enum tg {
|
|
|
|
bar,
|
|
|
|
}
|
2011-06-30 13:22:10 -05:00
|
|
|
|
|
|
|
#[cfg(bogus)]
|
2012-08-15 20:46:55 -05:00
|
|
|
struct r {
|
2020-09-01 16:12:52 -05:00
|
|
|
i: isize,
|
2012-09-05 17:58:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(bogus)]
|
2020-09-01 16:12:52 -05:00
|
|
|
fn r(i: isize) -> 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 {
|
2020-09-01 16:12:52 -05:00
|
|
|
i: isize,
|
2012-09-05 17:58:43 -05:00
|
|
|
}
|
|
|
|
|
2020-09-01 16:12:52 -05:00
|
|
|
fn r(i: isize) -> 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.
|
2020-09-01 16:12:52 -05: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)]
|
2020-09-01 16:12:52 -05:00
|
|
|
pub fn f() {}
|
2011-06-30 13:22:10 -05:00
|
|
|
|
2020-09-01 16:12:52 -05: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)]
|
2020-09-01 16:12:52 -05:00
|
|
|
pub fn main() {
|
|
|
|
panic!()
|
|
|
|
}
|
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
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!((b));
|
2013-08-17 10:37:42 -05:00
|
|
|
let _x: t = true;
|
2014-11-06 02:05:53 -06:00
|
|
|
let _y: tg = 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)]
|
2020-09-01 16:12:52 -05:00
|
|
|
fn f() {
|
|
|
|
panic!()
|
|
|
|
}
|
|
|
|
fn f() {}
|
2011-07-27 07:19:39 -05:00
|
|
|
f();
|
|
|
|
|
|
|
|
#[cfg(bogus)]
|
2015-03-25 19:06:52 -05:00
|
|
|
static i: isize = 0;
|
|
|
|
static i: isize = 1;
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(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 {
|
2013-03-05 16:42:58 -06:00
|
|
|
pub mod rustrt {
|
2020-09-01 16:12:52 -05:00
|
|
|
extern "C" {
|
2013-03-05 16:42:58 -06:00
|
|
|
#[cfg(bogus)]
|
2014-05-22 18:57:53 -05:00
|
|
|
pub fn write() -> String;
|
|
|
|
pub fn write() -> String;
|
2013-03-05 16:42:58 -06:00
|
|
|
}
|
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;
|
2012-11-01 17:48:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
mod test_methods {
|
|
|
|
struct Foo {
|
2020-09-01 16:12:52 -05:00
|
|
|
bar: usize,
|
2012-11-01 17:48:37 -05:00
|
|
|
}
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl Fooable for Foo {
|
2012-11-01 17:48:37 -05:00
|
|
|
#[cfg(bogus)]
|
2020-09-01 16:12:52 -05:00
|
|
|
fn what(&self) {}
|
2012-11-01 17:48:37 -05:00
|
|
|
|
2020-09-01 16:12:52 -05:00
|
|
|
fn what(&self) {}
|
2012-11-01 17:48:37 -05:00
|
|
|
|
|
|
|
#[cfg(bogus)]
|
2020-09-01 16:12:52 -05:00
|
|
|
fn the(&self) {}
|
2012-11-01 17:48:37 -05:00
|
|
|
|
2020-09-01 16:12:52 -05:00
|
|
|
fn the(&self) {}
|
2012-11-01 17:48:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
trait Fooable {
|
|
|
|
#[cfg(bogus)]
|
2013-03-21 21:07:54 -05:00
|
|
|
fn what(&self);
|
2012-11-01 17:48:37 -05:00
|
|
|
|
2013-03-21 21:07:54 -05:00
|
|
|
fn what(&self);
|
2012-11-01 17:48:37 -05:00
|
|
|
|
|
|
|
#[cfg(bogus)]
|
2013-03-12 21:32:14 -05:00
|
|
|
fn the(&self);
|
2012-11-01 17:48:37 -05:00
|
|
|
|
2013-03-12 21:32:14 -05:00
|
|
|
fn the(&self);
|
2012-11-01 17:48:37 -05:00
|
|
|
}
|
|
|
|
}
|
2016-09-14 17:40:56 -05:00
|
|
|
|
|
|
|
#[cfg(any())]
|
|
|
|
mod nonexistent_file; // Check that unconfigured non-inline modules are not loaded or parsed.
|