Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
offset-of
/
offset-of-must-use.rs
blob: 87918b8ff95390590aa58c4e889b7346f8f54b6f [
file
] [
log
] [
blame
]
//@ check-pass
#![
warn
(
unused
)]
fn
main
()
{
core
::
mem
::
offset_of
!((
String
,),
0
);
//~^ WARN unused `offset_of` call that must be used
}