We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bfe296 commit 3772c1eCopy full SHA for 3772c1e
src/libsyntax/ext/expand.rs
@@ -467,7 +467,7 @@ pub fn core_macros() -> ~str {
467
)
468
469
macro_rules! assert_eq (
470
- ($given:expr , $expected:expr) => (
+ ($expected:expr , $given:expr) => (
471
{
472
let given_val = $given;
473
let expected_val = $expected;
@@ -480,7 +480,7 @@ pub fn core_macros() -> ~str {
480
481
482
macro_rules! assert_approx_eq (
483
484
485
use std::cmp::ApproxEq;
486
@@ -496,7 +496,7 @@ pub fn core_macros() -> ~str {
496
}
497
498
);
499
- ($given:expr , $expected:expr , $epsilon:expr) => (
+ ($expected:expr , $given:expr , $epsilon:expr) => (
500
501
502
0 commit comments