]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/typeck-macro-interaction-issue-8852.rs
rollup merge of #19008: alex/collections-typos
[rust.git] / src / test / run-pass / typeck-macro-interaction-issue-8852.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 #![feature(macro_rules)]
12
13 enum T {
14     A(int),
15     B(f64)
16 }
17
18 // after fixing #9384 and implementing hygiene for match bindings,
19 // this now fails because the insertion of the 'y' into the match
20 // doesn't cause capture. Making this macro hygienic (as I've done)
21 // could very well make this test case completely pointless....
22
23 macro_rules! test(
24     ($id1:ident, $id2:ident, $e:expr) => (
25         fn foo(a:T, b:T) -> T {
26             match (a, b) {
27                 (T::A($id1), T::A($id2)) => T::A($e),
28                 (T::B($id1), T::B($id2)) => T::B($e),
29                 _ => panic!()
30             }
31         }
32     )
33 )
34
35 test!(x,y,x + y)
36
37 pub fn main() {
38     foo(T::A(1), T::A(2));
39 }