rust/tests/ui/error-codes/E0534.rs

7 lines
82 B
Rust

#[inline()] //~ ERROR E0534
pub fn something() {}
fn main() {
something();
}