rust/tests/ui/span/E0535.rs

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

7 lines
89 B
Rust
Raw Normal View History

2016-08-30 11:13:37 +00:00
#[inline(unknown)] //~ ERROR E0535
pub fn something() {}
2017-10-27 14:15:23 +00:00
fn main() {
something();
}