Skip to content

Commit 874e093

Browse files
committed
fixup qquote test
1 parent f772079 commit 874e093

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/test/compile-fail-fulldeps/qquote.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ fn main() {
5252
assert_eq!(pprust::expr_to_string(&expr), "23")
5353
});
5454

55-
quote_expr!(&cx, 2 - $abcd + 7).and_then(|expr| { //~ ERROR unresolved name: abcd
55+
quote_expr!(&cx, 2 - $abcd + 7).and_then(|expr| {
5656
assert_eq!(pprust::expr_to_string(&expr), "2 - $abcd + 7")
57+
//~^ ERROR unresolved name: abcd
5758
});
5859
}

0 commit comments

Comments
 (0)