mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 13:49:13 +00:00
12 lines
158 B
Rust
12 lines
158 B
Rust
#![deny(dead_code)]
|
|
|
|
fn main() {
|
|
let _ = foo::S{f: false};
|
|
}
|
|
|
|
mod foo {
|
|
pub struct S {
|
|
pub f: bool, //~ ERROR field `f` is never read
|
|
}
|
|
}
|