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

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

7 lines
82 B
Rust
Raw Normal View History

2016-08-30 11:13:37 +00:00
#[inline()] //~ ERROR E0534
pub fn something() {}
2017-10-30 17:19:31 +00:00
fn main() {
something();
}