aboutsummaryrefslogtreecommitdiff
path: root/cortex-m-rt/tests
diff options
context:
space:
mode:
authorGravatar Jonas Schievink <jonasschievink@gmail.com> 2021-01-08 16:40:20 +0100
committerGravatar Jonas Schievink <jonasschievink@gmail.com> 2021-01-08 16:40:20 +0100
commit4ee3d6be420fa5154372c8bfa5f3a4f9b8263db1 (patch)
treee80aae3877286f78a66c9b56a4fb064ff054d081 /cortex-m-rt/tests
parent7ac8f7826048cf95b51fe6efdf91af9166439830 (diff)
downloadcortex-m-4ee3d6be420fa5154372c8bfa5f3a4f9b8263db1.tar.gz
cortex-m-4ee3d6be420fa5154372c8bfa5f3a4f9b8263db1.tar.zst
cortex-m-4ee3d6be420fa5154372c8bfa5f3a4f9b8263db1.zip
Fix compile-fail test error message
Diffstat (limited to 'cortex-m-rt/tests')
-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() {}