diff options
author | 2019-01-22 09:54:45 +0100 | |
---|---|---|
committer | 2019-01-22 09:54:45 +0100 | |
commit | 1f08b692ab1ba37a09cbcdd73469225db5d67aad (patch) | |
tree | 1f324d3e91bb1f7cc0facba36c7c0ec432de0b41 /cortex-m-rt/tests/compile-fail/interrupt-bad-signature-1.rs | |
parent | 28f74ed6d29df432334d29d2083e91a1a5d0fa6c (diff) | |
download | cortex-m-1f08b692ab1ba37a09cbcdd73469225db5d67aad.tar.gz cortex-m-1f08b692ab1ba37a09cbcdd73469225db5d67aad.tar.zst cortex-m-1f08b692ab1ba37a09cbcdd73469225db5d67aad.zip |
update cfail tests to make them pass with latest nightly
Diffstat (limited to 'cortex-m-rt/tests/compile-fail/interrupt-bad-signature-1.rs')
-rw-r--r-- | cortex-m-rt/tests/compile-fail/interrupt-bad-signature-1.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cortex-m-rt/tests/compile-fail/interrupt-bad-signature-1.rs b/cortex-m-rt/tests/compile-fail/interrupt-bad-signature-1.rs index c7e25b3..bd5ff9f 100644 --- a/cortex-m-rt/tests/compile-fail/interrupt-bad-signature-1.rs +++ b/cortex-m-rt/tests/compile-fail/interrupt-bad-signature-1.rs @@ -11,6 +11,7 @@ fn foo() -> ! { loop {} } +#[allow(non_camel_case_types)] enum interrupt { USART1, } |