mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-28 19:27:30 +03:00
10 lines
110 B
Rust
10 lines
110 B
Rust
#[inline(always)] //~ ERROR: E0518
|
|
struct Foo;
|
|
|
|
#[inline(never)] //~ ERROR: E0518
|
|
impl Foo {
|
|
}
|
|
|
|
fn main() {
|
|
}
|