7 lines
116 B
Rust
7 lines
116 B
Rust
|
//@ known-bug: #94846
|
||
|
#![feature(generic_const_exprs)]
|
||
|
|
||
|
struct S<const C:() = {}>() where S<{}>:;
|
||
|
|
||
|
pub fn main() {}
|