blob: 656aa880ad1f15727c385ad1fc0701c832df05f8 [file] [log] [blame]
// run-pass
// ignore-pretty pretty-printing is unhygienic
#![feature(decl_macro)]
trait Tr {
fn f(&self) -> &'static str {
"This shouldn't happen"
}
}
pub macro m($t:ty) {
impl Tr for $t {
fn f(&self) -> &'static str {
"Run me"
}
}
}
struct S;
m!(S);
fn main() {
assert_eq!(S.f(), "Run me");
}