mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 05:04:23 +00:00
15 lines
175 B
Rust
15 lines
175 B
Rust
#![allow(dead_code)]
|
|
|
|
#[inline(please,no)] //~ ERROR expected one argument
|
|
fn a() {
|
|
}
|
|
|
|
#[inline()] //~ ERROR expected one argument
|
|
fn b() {
|
|
}
|
|
|
|
fn main() {
|
|
a();
|
|
b();
|
|
}
|