aboutsummaryrefslogtreecommitdiff
path: root/crates/hir_def/src/body/tests.rs
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2021-04-16 21:52:56 +0100
committerGitHub <[email protected]>2021-04-16 21:52:56 +0100
commit200955647277c31a3254a1041b7b7bb5f2a79ed8 (patch)
tree806a0de6951d509f5a4f8ccada6b189789cdf544 /crates/hir_def/src/body/tests.rs
parent5274eb12dd87f0d790f2871d63f8e3c6f69d3ae9 (diff)
parentff858376aa4a974cda33a269b4c2d34cbda21bed (diff)
Merge #8542
8542: Include path in `unresolved-macro-call` diagnostic r=matklad a=jonas-schievink Co-authored-by: Jonas Schievink <[email protected]>
Diffstat (limited to 'crates/hir_def/src/body/tests.rs')
-rw-r--r--crates/hir_def/src/body/tests.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir_def/src/body/tests.rs b/crates/hir_def/src/body/tests.rs
index c1d3e998f..63f5fe88d 100644
--- a/crates/hir_def/src/body/tests.rs
+++ b/crates/hir_def/src/body/tests.rs
@@ -180,7 +180,7 @@ fn unresolved_macro_diag() {
180 r#" 180 r#"
181fn f() { 181fn f() {
182 m!(); 182 m!();
183 //^^^^ unresolved macro call 183 //^^^^ unresolved macro `m!`
184} 184}
185 "#, 185 "#,
186 ); 186 );