blob: 37c39b6384dfffcfc32028bd988e2e21620866a0 [file] [log] [blame]
// 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();
}