mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-21 22:01:17 +01:00
6 lines
127 B
Rust
6 lines
127 B
Rust
//@ known-bug: #123959
|
|
#![feature(generic_const_exprs)]
|
|
fn foo<T>(_: [(); std::mem::offset_of!((T,), 0)]) {}
|
|
|
|
pub fn main() {}
|