mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-02 13:06:40 +00:00
10 lines
177 B
Rust
10 lines
177 B
Rust
// check-pass
|
|
|
|
#![feature(offset_of)]
|
|
#![warn(unused)]
|
|
|
|
fn main() {
|
|
core::mem::offset_of!((String,), 0);
|
|
//~^ WARN unused return value of `must_use` that must be used
|
|
}
|