blob: 38479f93de58fe726b4c478abaee08157e424186 [file] [log] [blame]
error: invalid signature for `extern "msp430-interrupt"` function
--> $DIR/interrupt-invalid-signature.rs:40:41
|
LL | extern "msp430-interrupt" fn msp430_arg(_byte: u8) {}
| ^^^^^^^^^
|
= note: functions with the "msp430-interrupt" ABI cannot have any parameters or return type
help: remove the parameters and return type
|
LL - extern "msp430-interrupt" fn msp430_arg(_byte: u8) {}
LL + extern "msp430-interrupt" fn msp430_arg() {}
|
error: invalid signature for `extern "msp430-interrupt"` function
--> $DIR/interrupt-invalid-signature.rs:65:46
|
LL | extern "msp430-interrupt" fn msp430_ret() -> u8 {
| ^^
|
= note: functions with the "msp430-interrupt" ABI cannot have any parameters or return type
help: remove the parameters and return type
|
LL - extern "msp430-interrupt" fn msp430_ret() -> u8 {
LL + extern "msp430-interrupt" fn msp430_ret() {
|
error: aborting due to 2 previous errors