about summary refs log tree commit diff
path: root/tests/ui/offset-of/offset-of-must-use.rs
blob: 87918b8ff95390590aa58c4e889b7346f8f54b6f (plain)
1
2
3
4
5
6
7
8
//@ check-pass

#![warn(unused)]

fn main() {
    core::mem::offset_of!((String,), 0);
    //~^ WARN unused `offset_of` call that must be used
}