2014-02-05 16:33:10 -06:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2013-09-06 21:11:55 -05:00
|
|
|
// Check that we do not ICE when compiling this
|
|
|
|
// macro, which reuses the expression `$id`
|
|
|
|
|
2014-04-14 10:30:31 -05:00
|
|
|
#![feature(macro_rules)]
|
2013-10-02 22:00:54 -05:00
|
|
|
|
2014-05-05 20:56:44 -05:00
|
|
|
|
2013-09-06 21:11:55 -05:00
|
|
|
struct Foo {
|
|
|
|
a: int
|
|
|
|
}
|
|
|
|
|
|
|
|
pub enum Bar {
|
2014-05-05 20:56:44 -05:00
|
|
|
Bar1, Bar2(int, Box<Bar>),
|
2013-09-06 21:11:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Foo {
|
2014-05-05 20:56:44 -05:00
|
|
|
fn elaborate_stm(&mut self, s: Box<Bar>) -> Box<Bar> {
|
2013-09-06 21:11:55 -05:00
|
|
|
macro_rules! declare(
|
|
|
|
($id:expr, $rest:expr) => ({
|
|
|
|
self.check_id($id);
|
2014-11-06 02:05:53 -06:00
|
|
|
box Bar::Bar2($id, $rest)
|
2013-09-06 21:11:55 -05:00
|
|
|
})
|
|
|
|
);
|
|
|
|
match s {
|
2014-11-06 02:05:53 -06:00
|
|
|
box Bar::Bar2(id, rest) => declare!(id, self.elaborate_stm(rest)),
|
2014-10-09 14:17:22 -05:00
|
|
|
_ => panic!()
|
2013-09-06 21:11:55 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-09 14:17:22 -05:00
|
|
|
fn check_id(&mut self, s: int) { panic!() }
|
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() { }
|