Files
rust/tests/ui/error-codes/E0540.rs

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

7 lines
111 B
Rust
Raw Permalink Normal View History

#[inline()] //~ ERROR malformed `inline` attribute input
2016-08-30 13:13:37 +02:00
pub fn something() {}
2017-10-30 18:19:31 +01:00
fn main() {
something();
}