aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jorge Aparicio <jorge@japaric.io> 2018-12-06 23:47:45 +0100
committerGravatar Jorge Aparicio <jorge@japaric.io> 2018-12-06 23:47:45 +0100
commit6b33a7b91cd09936e8559520e4238d043af15fee (patch)
treea0756b6a0157b4e5a2c7995feeeadb06368893a4
parent223352e8f05a79107ae377855b54b7593d52a5e7 (diff)
downloadcortex-m-6b33a7b91cd09936e8559520e4238d043af15fee.tar.gz
cortex-m-6b33a7b91cd09936e8559520e4238d043af15fee.tar.zst
cortex-m-6b33a7b91cd09936e8559520e4238d043af15fee.zip
update error message
-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 9530cf4..1ac674b 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 type or module `interrupt`
fn USART1() {}