rtic/macros
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
..
src reject duplicate arguments in #[interrupt] and #[exception] 2019-02-23 22:35:29 +01:00
Cargo.toml add "nightly" feature 2019-02-19 12:37:25 +01:00