2013-09-06 21:11:55 -05:00
|
|
|
// Check that we do not ICE when compiling this
|
|
|
|
// macro, which reuses the expression `$id`
|
|
|
|
|
2013-10-02 22:00:54 -05:00
|
|
|
#[feature(macro_rules)];
|
|
|
|
|
2013-09-06 21:11:55 -05:00
|
|
|
struct Foo {
|
|
|
|
a: int
|
|
|
|
}
|
|
|
|
|
|
|
|
pub enum Bar {
|
|
|
|
Bar1, Bar2(int, ~Bar),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
fn elaborate_stm(&mut self, s: ~Bar) -> ~Bar {
|
|
|
|
macro_rules! declare(
|
|
|
|
($id:expr, $rest:expr) => ({
|
|
|
|
self.check_id($id);
|
|
|
|
~Bar2($id, $rest)
|
|
|
|
})
|
|
|
|
);
|
|
|
|
match s {
|
|
|
|
~Bar2(id, rest) => declare!(id, self.elaborate_stm(rest)),
|
2013-10-21 15:08:31 -05:00
|
|
|
_ => fail!()
|
2013-09-06 21:11:55 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-21 15:08:31 -05:00
|
|
|
fn check_id(&mut self, s: int) { fail!() }
|
2013-09-06 21:11:55 -05:00
|
|
|
}
|
2013-09-29 21:23:57 -05:00
|
|
|
|
2013-09-25 02:43:37 -05:00
|
|
|
pub fn main() { }
|