6 lines
107 B
Rust
6 lines
107 B
Rust
|
|
//@ compile-flags: -g --crate-type=rlib -Zdwarf-version=4
|
||
|
|
|
||
|
|
pub fn say_hi() {
|
||
|
|
println!("hello there")
|
||
|
|
}
|