rust/tests/ui/offset-of/offset-of-inference.rs
2023-05-20 15:20:27 +02:00

12 lines
205 B
Rust

// Test that inference types in `offset_of!` don't ICE.
#![feature(offset_of)]
struct Foo<T> {
x: T,
}
fn main() {
let _ = core::mem::offset_of!(Foo<_>, x); //~ ERROR: type annotations needed
}