mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
20 lines
293 B
Rust
20 lines
293 B
Rust
//@ check-pass
|
|
|
|
#![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();
|
|
}
|