mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 08:15:58 +00:00
7 lines
168 B
Rust
7 lines
168 B
Rust
//@ known-bug: rust-lang/rust#129425
|
|
|
|
//@compile-flags: --crate-type=lib
|
|
|
|
#![feature(generic_const_exprs)]
|
|
fn foo<'a, T: 'a>(_: [(); std::mem::offset_of!((T,), 0)]) {}
|