summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0518.rs
blob: 9c99702ada81f9e4f7eb60152e5d0577defb045b (plain)
1
2
3
4
5
6
7
8
9
#[inline(always)] //~ ERROR: E0518
struct Foo;

#[inline(never)] //~ ERROR: E0518
impl Foo {
}

fn main() {
}