aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jonas Schievink <jonasschievink@gmail.com> 2020-11-25 01:29:05 +0100
committerGravatar Jonas Schievink <jonasschievink@gmail.com> 2020-11-25 01:29:05 +0100
commit35dc34beed25f633b322e273140f6a9e4123acd3 (patch)
tree3c8d25991626f830acfc4b487d1b9b26f3652811
parent319076c14fed9a749af24d3f0c6e324f08715e68 (diff)
downloadcortex-m-35dc34beed25f633b322e273140f6a9e4123acd3.tar.gz
cortex-m-35dc34beed25f633b322e273140f6a9e4123acd3.tar.zst
cortex-m-35dc34beed25f633b322e273140f6a9e4123acd3.zip
Update compile-fail test
-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() {}