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