rust/tests/crashes/128176.rs

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

14 lines
233 B
Rust
Raw Normal View History

2024-08-04 14:25:49 -05:00
//@ known-bug: rust-lang/rust#128176
#![feature(generic_const_exprs)]
#![feature(dyn_compatible_for_dispatch)]
2024-08-04 14:25:49 -05:00
trait X {
type Y<const N: i16>;
}
const _: () = {
fn f2<'a>(arg: Box<dyn X<Y<1> = &'a ()>>) {}
};
fn main() {}