rust/src/test/ui/feature-gates/feature-gate-abi-msp430-interrupt.rs

10 lines
239 B
Rust
Raw Normal View History

// Test that the MSP430 interrupt ABI cannot be used when msp430_interrupt
// feature gate is not used.
extern "msp430-interrupt" fn foo() {}
//~^ ERROR msp430-interrupt ABI is experimental and subject to change
fn main() {
foo();
}