rtic/tests
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
..
cfail reject duplicate arguments in #[interrupt] and #[exception] 2019-02-23 22:35:29 +01:00
cpass update examples and tests 2019-02-12 15:08:46 +01:00
compiletest.rs cargo fmt 2019-02-16 00:26:07 +01:00