mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
26 lines
356 B
Rust
26 lines
356 B
Rust
// 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");
|
|
}
|