File tree 2 files changed +8
-8
lines changed
2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ macro_rules! foo { () => {
17
17
let _ = bar!( ) ;
18
18
} }
19
19
20
- macro_rules! bar { // test issue #31856
20
+ macro_rules! m { // test issue #31856
21
21
( $n: ident) => (
22
22
let a = 1 ;
23
23
let $n = a;
Original file line number Diff line number Diff line change @@ -22,23 +22,23 @@ fn f() {
22
22
23
23
fn g ( ) {
24
24
let x = 0 ;
25
- macro_rules! m { ( $x: ident) => {
26
- macro_rules! m2 { ( ) => { ( $x, x) } }
25
+ macro_rules! m { ( $m1 : ident , $m2 : ident , $ x: ident) => {
26
+ macro_rules! $m1 { ( ) => { ( $x, x) } }
27
27
let x = 1 ;
28
- macro_rules! m3 { ( ) => { ( $x, x) } }
28
+ macro_rules! $m2 { ( ) => { ( $x, x) } }
29
29
} }
30
30
31
31
let x = 2 ;
32
- m ! ( x) ;
32
+ m ! ( m2 , m3 , x) ;
33
33
34
34
let x = 3 ;
35
35
assert_eq ! ( m2!( ) , ( 2 , 0 ) ) ;
36
36
assert_eq ! ( m3!( ) , ( 2 , 1 ) ) ;
37
37
38
38
let x = 4 ;
39
- m ! ( x) ;
40
- assert_eq ! ( m2 !( ) , ( 4 , 0 ) ) ;
41
- assert_eq ! ( m3 !( ) , ( 4 , 1 ) ) ;
39
+ m ! ( m4 , m5 , x) ;
40
+ assert_eq ! ( m4 !( ) , ( 4 , 0 ) ) ;
41
+ assert_eq ! ( m5 !( ) , ( 4 , 1 ) ) ;
42
42
}
43
43
44
44
mod foo {
You can’t perform that action at this time.
0 commit comments