rust/tests/ui/proc-macro/crate-var.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

62 lines
1.1 KiB
Rust
Raw Normal View History

// run-pass
2016-11-08 04:06:40 +00:00
// aux-build:double.rs
2018-06-11 23:29:12 +00:00
// aux-build:external-crate-var.rs
2016-11-08 04:06:40 +00:00
#![allow(unused)]
#[macro_use]
extern crate double;
2018-06-11 23:29:12 +00:00
#[macro_use]
extern crate external_crate_var;
2016-11-08 04:06:40 +00:00
struct Foo;
2018-06-11 23:29:12 +00:00
trait Trait {
const CONST: u32;
type Assoc;
}
impl Trait for Foo {
const CONST: u32 = 0;
type Assoc = Foo;
}
macro_rules! local { () => {
// derive_Double outputs secondary copies of each definition
// to test what the proc_macro sees.
mod bar {
#[derive(Double)]
struct Bar($crate::Foo);
}
mod qself {
#[derive(Double)]
struct QSelf(<::Foo as $crate::Trait>::Assoc);
}
mod qself_recurse {
#[derive(Double)]
struct QSelfRecurse(<<$crate::Foo as $crate::Trait>::Assoc as $crate::Trait>::Assoc);
}
mod qself_in_const {
#[derive(Double)]
#[repr(u32)]
enum QSelfInConst {
Variant = <::Foo as $crate::Trait>::CONST,
}
}
2016-11-08 04:06:40 +00:00
} }
2018-06-11 23:29:12 +00:00
mod local {
local!();
}
// and now repeat the above tests, using a macro defined in another crate
mod external {
external!{}
}
2016-11-08 04:06:40 +00:00
fn main() {}