rustc/tests/ui/error-codes/E0534.rs
2023-08-02 10:33:26 +02:00

7 lines
82 B
Rust

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