about summary refs log tree commit diff
path: root/tests/ui/offset-of/offset-of-inference.rs
blob: 1b1ae25e1ee65c331e9e9c5d5760d984e38b7aa2 (plain)
1
2
3
4
5
6
7
8
9
// Test that inference types in `offset_of!` don't ICE.

struct Foo<T> {
    x: T,
}

fn main() {
    let _ = core::mem::offset_of!(Foo<_>, x); //~ ERROR: type annotations needed
}