2015-02-18 20:30:17 +02:00
|
|
|
#![allow(dead_code)]
|
|
|
|
|
|
|
|
#[inline(please,no)] //~ ERROR expected one argument
|
2022-09-16 22:49:43 +08:00
|
|
|
fn a() {
|
2015-02-18 20:30:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline()] //~ ERROR expected one argument
|
2022-09-16 22:49:43 +08:00
|
|
|
fn b() {
|
2015-02-18 20:30:17 +02:00
|
|
|
}
|
|
|
|
|
2017-10-30 18:19:31 +01:00
|
|
|
fn main() {
|
|
|
|
a();
|
|
|
|
b();
|
|
|
|
}
|