2021-06-11 11:22:13 +00:00
|
|
|
// needs-llvm-components: msp430
|
|
|
|
// compile-flags: --target=msp430-none-elf --crate-type=rlib
|
|
|
|
#![no_core]
|
|
|
|
#![feature(no_core, lang_items)]
|
|
|
|
#[lang="sized"]
|
|
|
|
trait Sized { }
|
2017-01-19 13:15:05 +00:00
|
|
|
|
2021-06-11 11:22:13 +00:00
|
|
|
extern "msp430-interrupt" fn f() {}
|
|
|
|
//~^ ERROR msp430-interrupt ABI is experimental
|
2020-05-20 16:35:47 +00:00
|
|
|
|
2021-06-11 11:22:13 +00:00
|
|
|
trait T {
|
|
|
|
extern "msp430-interrupt" fn m();
|
|
|
|
//~^ ERROR msp430-interrupt ABI is experimental
|
2017-01-19 13:15:05 +00:00
|
|
|
|
2021-06-11 11:22:13 +00:00
|
|
|
extern "msp430-interrupt" fn dm() {}
|
|
|
|
//~^ ERROR msp430-interrupt ABI is experimental
|
2017-01-19 13:15:05 +00:00
|
|
|
}
|
2021-06-11 11:22:13 +00:00
|
|
|
|
|
|
|
struct S;
|
|
|
|
impl T for S {
|
|
|
|
extern "msp430-interrupt" fn m() {}
|
|
|
|
//~^ ERROR msp430-interrupt ABI is experimental
|
|
|
|
}
|
|
|
|
|
|
|
|
impl S {
|
|
|
|
extern "msp430-interrupt" fn im() {}
|
|
|
|
//~^ ERROR msp430-interrupt ABI is experimental
|
|
|
|
}
|
|
|
|
|
|
|
|
type TA = extern "msp430-interrupt" fn();
|
|
|
|
//~^ ERROR msp430-interrupt ABI is experimental
|
|
|
|
|
|
|
|
extern "msp430-interrupt" {}
|
|
|
|
//~^ ERROR msp430-interrupt ABI is experimental
|