We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f772079 commit ae3c27cCopy full SHA for ae3c27c
src/test/compile-fail-fulldeps/qquote.rs
@@ -52,7 +52,8 @@ fn main() {
52
assert_eq!(pprust::expr_to_string(&expr), "23")
53
});
54
55
- quote_expr!(&cx, 2 - $abcd + 7).and_then(|expr| { //~ ERROR unresolved name: abcd
+ quote_expr!(&cx, 2 - $abcd + 7).and_then(|expr| {
56
assert_eq!(pprust::expr_to_string(&expr), "2 - $abcd + 7")
57
+ //~^ ERROR unresolved name: `abcd`
58
59
}
0 commit comments