diff options
author | 2018-12-06 23:47:45 +0100 | |
---|---|---|
committer | 2018-12-06 23:47:45 +0100 | |
commit | 6b33a7b91cd09936e8559520e4238d043af15fee (patch) | |
tree | a0756b6a0157b4e5a2c7995feeeadb06368893a4 | |
parent | 223352e8f05a79107ae377855b54b7593d52a5e7 (diff) | |
download | cortex-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.rs | 2 |
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() {} |