mirror of
https://github.com/Noratrieb/cargo-minimize.git
synced 2026-01-14 16:35:01 +01:00
12 lines
198 B
Rust
12 lines
198 B
Rust
|
|
use hello::{thingy, whatever};
|
|
mod hello{
|
|
pub fn thingy(){}
|
|
/// ~REQUIRE-DELETED whatever
|
|
pub fn whatever(){}
|
|
}
|
|
|
|
fn main(){
|
|
"~MINIMIZE-ROOT let x = thingy";
|
|
let x = thingy();
|
|
}
|