rust/tests/crashes/94846.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
116 B
Rust
Raw Normal View History

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