summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0534.rs
blob: a4242499419794ba8be0205ca2e234622f1d07cb (plain)
1
2
3
4
5
6
#[inline()] //~ ERROR E0534
pub fn something() {}

fn main() {
    something();
}