mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
21 lines
339 B
Rust
21 lines
339 B
Rust
// check-pass
|
|
// ignore-pretty pretty-printing is unhygienic
|
|
|
|
#![feature(decl_macro)]
|
|
|
|
macro m($T:ident, $f:ident) {
|
|
pub trait $T {
|
|
fn f(&self) -> u32 { 0 }
|
|
fn $f(&self) -> i32 { 0 }
|
|
}
|
|
impl $T for () {}
|
|
|
|
let _: u32 = ().f();
|
|
let _: i32 = ().$f();
|
|
}
|
|
|
|
fn main() {
|
|
m!(T, f);
|
|
let _: i32 = ().f();
|
|
}
|