2018-12-25 21:08:33 -07:00

10 lines
110 B
Rust

#[inline(always)] //~ ERROR: E0518
struct Foo;
#[inline(never)] //~ ERROR: E0518
impl Foo {
}
fn main() {
}