0
0
mirror of https://github.com/rust-lang/rust.git synced 2024-11-24 18:21:15 +01:00
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() {}