Make const param default test reproduce original ICE

This commit is contained in:
cijiugechu
2026-05-15 18:32:42 +08:00
parent 7c3c88f42a
commit d24fd77ebe
@@ -3,7 +3,7 @@
#![feature(min_generic_const_args)]
trait Bar<const N: bool = false> {}
trait Bar<const N: usize = const { 1 + 1 }> {}
trait Foo {
type AssocB: Bar;