blob: 09f4f318bdddf25c66a1adca0e68b95333091aaf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//@ known-bug: rust-lang/rust#125680
//@ edition:2021
#![feature(generic_const_exprs)]
use core::fmt::Debug;
struct Inline<T>
where
[(); std::mem::offset_of!((T,), 0)]:,
{}
fn main() {
let dst = Inline::<dyn Debug>::new(0); // BANG!
}
|