rust/src/test/ui/error-codes/E0534.rs
2018-12-25 21:08:33 -07:00

6 lines
82 B
Rust

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