aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bors[bot] <26634292+bors[bot]@users.noreply.github.com> 2021-01-08 15:47:12 +0000
committerGravatar GitHub <noreply@github.com> 2021-01-08 15:47:12 +0000
commit47987f6a85508f99173c23d6808996354c16e26f (patch)
treee80aae3877286f78a66c9b56a4fb064ff054d081
parent7ac8f7826048cf95b51fe6efdf91af9166439830 (diff)
parent4ee3d6be420fa5154372c8bfa5f3a4f9b8263db1 (diff)
downloadcortex-m-47987f6a85508f99173c23d6808996354c16e26f.tar.gz
cortex-m-47987f6a85508f99173c23d6808996354c16e26f.tar.zst
cortex-m-47987f6a85508f99173c23d6808996354c16e26f.zip
Merge #305
305: Fix compile-fail test error message r=adamgreig a=jonas-schievink Co-authored-by: Jonas Schievink <jonasschievink@gmail.com>
-rw-r--r--cortex-m-rt/tests/compile-fail/interrupt-not-reexported.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cortex-m-rt/tests/compile-fail/interrupt-not-reexported.rs b/cortex-m-rt/tests/compile-fail/interrupt-not-reexported.rs
index 1ac674b..6a1dd6e 100644
--- a/cortex-m-rt/tests/compile-fail/interrupt-not-reexported.rs
+++ b/cortex-m-rt/tests/compile-fail/interrupt-not-reexported.rs
@@ -11,5 +11,5 @@ fn foo() -> ! {
loop {}
}
-#[interrupt] //~ ERROR failed to resolve: use of undeclared type or module `interrupt`
+#[interrupt] //~ ERROR failed to resolve: use of undeclared crate or module `interrupt`
fn USART1() {}