about summary refs log tree commit diff
path: root/tests/crashes/137514.rs
blob: 7ae5f29e36e6349412a50e02e44358da2ecbd892 (plain)
1
2
3
4
5
6
7
8
9
//@ known-bug: #137514
//@ needs-rustc-debug-assertions
#![feature(generic_const_exprs)]

trait Bar<const N: usize> {}

trait BB = Bar<{ 1i32 + 1 }>;

fn foo(x: &dyn BB) {}