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