summaryrefslogtreecommitdiffstats
path: root/tests/ui/offset-of/offset-of-must-use.rs
blob: e30145d7a2fe30834712c6b9af676e171f9ca97b (plain)
1
2
3
4
5
6
7
8
9
// 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
}