rust/tests/crashes/94846.rs
2024-04-14 11:21:51 +02:00

7 lines
116 B
Rust

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