Skip to content

Commit 259e738

Browse files
authored
Add missing error indicator
1 parent 0cc6d2e commit 259e738

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/ui/typeck/issue-81943.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ fn main() {
33
f(|x| dbg!(x)); //~ERROR
44
f(|x| match x { tmp => { tmp } }); //~ERROR
55
macro_rules! d {
6-
($e:expr) => { match $e { x => { x } } }
6+
($e:expr) => { match $e { x => { x } } } //~ERROR
77
}
88
f(|x| d!(x)); //~ERROR
99
}

0 commit comments

Comments
 (0)