mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-17 03:43:17 +00:00
8 lines
115 B
Rust
8 lines
115 B
Rust
// compile-flags: --test
|
|
|
|
#![deny(dead_code)]
|
|
|
|
fn dead() {} //~ error: function `dead` is never used
|
|
|
|
fn main() {}
|