diff options
author | 2018-11-14 01:43:20 +0100 | |
---|---|---|
committer | 2018-11-14 01:43:20 +0100 | |
commit | b46b29f54f89bf1051505f1d53d53cca86c46196 (patch) | |
tree | e724114e97670a192fcdc6cbb2f14818e9a384bd | |
parent | 72da5fbe02c12ef9e25d599317aa31f1345b6bd3 (diff) | |
download | cortex-m-b46b29f54f89bf1051505f1d53d53cca86c46196.tar.gz cortex-m-b46b29f54f89bf1051505f1d53d53cca86c46196.tar.zst cortex-m-b46b29f54f89bf1051505f1d53d53cca86c46196.zip |
update cfail test
-rw-r--r-- | cortex-m-rt/tests/compile-fail/hard-fault-twice.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cortex-m-rt/tests/compile-fail/hard-fault-twice.rs b/cortex-m-rt/tests/compile-fail/hard-fault-twice.rs index 0bb6c8c..030b54c 100644 --- a/cortex-m-rt/tests/compile-fail/hard-fault-twice.rs +++ b/cortex-m-rt/tests/compile-fail/hard-fault-twice.rs @@ -19,7 +19,7 @@ fn HardFault(_ef: &ExceptionFrame) -> ! { pub mod reachable { use cortex_m_rt::{exception, ExceptionFrame}; - #[exception] //~ ERROR symbol `UserHardFault` is already defined + #[exception] //~ ERROR symbol `HardFault` is already defined fn HardFault(_ef: &ExceptionFrame) -> ! { loop {} } |