mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 15:32:06 +00:00
17 lines
355 B
Rust
17 lines
355 B
Rust
// build-pass
|
|
// regression test for #112051, not in `offset-of-dst` as the issue is in codegen,
|
|
// and isn't triggered in the presence of typeck errors
|
|
|
|
#![feature(offset_of)]
|
|
|
|
struct S<T: ?Sized> {
|
|
a: u64,
|
|
b: T,
|
|
}
|
|
trait Tr {}
|
|
|
|
fn main() {
|
|
let _a = core::mem::offset_of!(S<dyn Tr>, a);
|
|
let _b = core::mem::offset_of!((u64, dyn Tr), 0);
|
|
}
|