rust/tests/ui/error-codes/E0518.rs
2023-01-11 09:32:08 +00:00

10 lines
110 B
Rust

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