mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-29 11:37:39 +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
|
||
|
}
|