10 lines
139 B
Rust
10 lines
139 B
Rust
#![allow(dead_code)]
|
|
|
|
#[inline]
|
|
fn f() {}
|
|
|
|
#[inline] //~ ERROR: attribute should be applied to function or closure
|
|
struct S;
|
|
|
|
fn main() {}
|