rust/tests/ui/error-codes/E0518.rs

10 lines
110 B
Rust

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