rtic/tests/cfail
Jorge Aparicio 73529ea650 reject duplicate arguments in #[interrupt] and #[exception]
This program was being accepted:

``` rust
 #[task(
    capacity = 1,
    capacity = 2,
    priority = 1,
    priority = 2,
)]
fn foo() {}
```

now it will trigger a compiler error
2019-02-23 22:35:29 +01:00
..
cfg-resources.rs properly handle #[cfg] (conditional compilation) on resources 2018-12-16 18:37:36 +01:00
cfg-static.rs properly handle #[cfg] (conditional compilation) on resources 2018-12-16 18:37:36 +01:00
duplicate-args-2.rs reject duplicate arguments in #[interrupt] and #[exception] 2019-02-23 22:35:29 +01:00
duplicate-args.rs reject duplicate arguments in #[interrupt] and #[exception] 2019-02-23 22:35:29 +01:00
early-return-2.rs forbid early returns in init 2019-02-12 11:07:15 +01:00
early-return.rs forbid early returns in init 2019-02-12 11:07:15 +01:00
exception-divergent.rs v0.4.0 2018-11-03 17:16:55 +01:00
exception-input.rs v0.4.0 2018-11-03 17:16:55 +01:00
exception-invalid.rs v0.4.0 2018-11-03 17:16:55 +01:00
exception-output.rs v0.4.0 2018-11-03 17:16:55 +01:00
exception-sys-tick.rs v0.4.0 2018-11-03 17:16:55 +01:00
idle-input.rs v0.4.0 2018-11-03 17:16:55 +01:00
idle-not-divergent.rs v0.4.0 2018-11-03 17:16:55 +01:00
init-divergent.rs update examples and tests 2019-02-12 15:08:46 +01:00
init-input.rs update examples and tests 2019-02-12 15:08:46 +01:00
init-not-send.rs v0.4.0 2018-11-03 17:16:55 +01:00
init-output.rs update examples and tests 2019-02-12 15:08:46 +01:00
insufficient-free-interrupts.rs v0.4.0 2018-11-03 17:16:55 +01:00
interrupt-divergent.rs v0.4.0 2018-11-03 17:16:55 +01:00
interrupt-input.rs v0.4.0 2018-11-03 17:16:55 +01:00
interrupt-output.rs v0.4.0 2018-11-03 17:16:55 +01:00
late-assigned-to-init.rs v0.4.0 2018-11-03 17:16:55 +01:00
late-not-send.rs update examples and tests 2019-02-12 15:08:46 +01:00
late-uninit.rs update examples and tests 2019-02-12 15:08:46 +01:00
needs-send.rs v0.4.0 2018-11-03 17:16:55 +01:00
needs-sync.rs v0.4.0 2018-11-03 17:16:55 +01:00
resource-not-declared.rs v0.4.0 2018-11-03 17:16:55 +01:00
resource-pub.rs v0.4.0 2018-11-03 17:16:55 +01:00
task-divergent.rs v0.4.0 2018-11-03 17:16:55 +01:00
task-idle.rs v0.4.0 2018-11-03 17:16:55 +01:00
task-not-declared.rs v0.4.0 2018-11-03 17:16:55 +01:00
used-free-interrupt.rs v0.4.0 2018-11-03 17:16:55 +01:00