rust/tests/ui/error-codes/E0518.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
110 B
Rust
Raw Normal View History

2017-11-14 16:45:18 -06:00
#[inline(always)] //~ ERROR: E0518
struct Foo;
2016-08-25 17:14:20 -05:00
2017-11-14 16:45:18 -06:00
#[inline(never)] //~ ERROR: E0518
impl Foo {
2016-08-25 17:14:20 -05:00
}
fn main() {
}