diff options
| author | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-02-24 16:42:33 +0000 |
|---|---|---|
| committer | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-02-24 16:42:33 +0000 |
| commit | bbdc3221f6a76da5784ca0017a0f5ac1ca875597 (patch) | |
| tree | 078c047e4605c79da7c50aa919e5ca7f588d31b0 /tests/cfail/duplicate-args.rs | |
| parent | 6b61cd2e3ff26d96615a7bfc386077ccf6505c28 (diff) | |
| parent | 73529ea650573196762ee4135a37682845501255 (diff) | |
Merge #159
159: reject duplicate arguments in #[interrupt] and #[exception] r=TeXitoi a=japaric
This program was being accepted:
``` rust
#[task(
capacity = 1,
capacity = 2,
priority = 1,
priority = 2,
)]
fn foo() {}
```
now it will trigger a compiler error
r? @korken89 || @TeXitoi
Co-authored-by: Jorge Aparicio <jorge@japaric.io>
Diffstat (limited to 'tests/cfail/duplicate-args.rs')
| -rw-r--r-- | tests/cfail/duplicate-args.rs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/cfail/duplicate-args.rs b/tests/cfail/duplicate-args.rs new file mode 100644 index 0000000..a946bae --- /dev/null +++ b/tests/cfail/duplicate-args.rs @@ -0,0 +1,24 @@ +#![no_main] +#![no_std] + +extern crate lm3s6965; +extern crate panic_halt; +extern crate rtfm; + +use rtfm::app; + +#[app(device = lm3s6965)] +const APP: () = { + #[init] + fn init() {} + + #[task( + capacity = 1, + capacity = 2, //~ ERROR argument appears more than once + )] + fn foo() {} + + extern "C" { + fn UART0(); + } +}; |
