]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/typeck-macro-interaction-issue-8852.rs
Auto merge of #28816 - petrochenkov:unistruct, r=nrc
[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
12 enum T {
13     A(isize),
14     B(f64)
15 }
16
17 // after fixing #9384 and implementing hygiene for match bindings,
18 // this now fails because the insertion of the 'y' into the match
19 // doesn't cause capture. Making this macro hygienic (as I've done)
20 // could very well make this test case completely pointless....
21
22 macro_rules! test {
23     ($id1:ident, $id2:ident, $e:expr) => (
24         fn foo(a:T, b:T) -> T {
25             match (a, b) {
26                 (T::A($id1), T::A($id2)) => T::A($e),
27                 (T::B($id1), T::B($id2)) => T::B($e),
28                 _ => panic!()
29             }
30         }
31     )
32 }
33
34 test!(x,y,x + y);
35
36 pub fn main() {
37     foo(T::A(1), T::A(2));
38 }