mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 07:00:47 +00: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() {
|
|
}
|