blob: 2501b1e23f2f14737c12a963ef5b72345bc63749 [file] [log] [blame]
#![allow(dead_code)]
#[inline(please,no)] //~ ERROR expected one argument
fn a() {
}
#[inline()] //~ ERROR expected one argument
fn b() {
}
fn main() {
a();
b();
}