Files
rust/tests/ui/span/E0539.rs

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

7 lines
112 B
Rust
Raw Normal View History

#[inline(unknown)] //~ ERROR malformed `inline` attribute
2016-08-30 13:13:37 +02:00
pub fn something() {}
2017-10-27 16:15:23 +02:00
fn main() {
something();
}