mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-16 05:56:56 +00:00
7 lines
172 B
Rust
7 lines
172 B
Rust
//@ known-bug: #136416
|
|
#![feature(generic_const_exprs)]
|
|
struct State<const S : usize = {}> where[(); S] :;
|
|
|
|
struct Foo;
|
|
struct State2<const S: usize = Foo> where [(); S]:;
|