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 06:13:37 -05:00
#[inline()] //~ ERROR E0534
pub fn something() {}
2017-10-30 12:19:31 -05:00
fn main() {
something();
}