os-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 17:45:18 -05:00
#[inline(always)] //~ ERROR: E0518
struct Foo;
2016-08-26 00:14:20 +02:00
2017-11-14 17:45:18 -05:00
#[inline(never)] //~ ERROR: E0518
impl Foo {
2016-08-26 00:14:20 +02:00
}
fn main() {
}