mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
10 lines
181 B
Rust
10 lines
181 B
Rust
// 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
|
|
}
|