Skip to content

Commit ae3c27c

Browse files
committed
fixup qquote test
1 parent f772079 commit ae3c27c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

+2-1
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)