diff options
author | 2021-01-08 15:47:12 +0000 | |
---|---|---|
committer | 2021-01-08 15:47:12 +0000 | |
commit | 47987f6a85508f99173c23d6808996354c16e26f (patch) | |
tree | e80aae3877286f78a66c9b56a4fb064ff054d081 | |
parent | 7ac8f7826048cf95b51fe6efdf91af9166439830 (diff) | |
parent | 4ee3d6be420fa5154372c8bfa5f3a4f9b8263db1 (diff) | |
download | cortex-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.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 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() {} |