2018-08-30 14:18:55 +02:00
|
|
|
// run-pass
|
2017-09-26 02:49:34 +03:00
|
|
|
|
|
|
|
#![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");
|
|
|
|
}
|