about summary refs log tree commit diff
path: root/tests/ui/error-codes/E0540.rs
blob: db29e6801f582dd4c286a193a273133df5cf6143 (plain)
1
2
3
4
5
6
#[inline()] //~ ERROR malformed `inline` attribute input
pub fn something() {}

fn main() {
    something();
}