Skip to content

Commit ae8342a

Browse files
authored
Rollup merge of #131591 - matthiaskrgr:crashtests, r=jieyouxu
add latest crash tests
2 parents 507dd63 + bcd7162 commit ae8342a

File tree

4 files changed

+32
-0
lines changed

4 files changed

+32
-0
lines changed

tests/crashes/131507.rs

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
//@ known-bug: #131507
2+
//@ compile-flags: -Zmir-opt-level=5 -Zvalidate-mir
3+
#![feature(non_lifetime_binders)]
4+
5+
fn brick()
6+
where
7+
for<T> T: Copy,
8+
{
9+
|| format_args!("");
10+
}

tests/crashes/131534.rs

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
//@ known-bug: #131534
2+
#![feature(generic_const_exprs)]
3+
type Value<'v> = &[[u8; SIZE]];
4+
5+
trait Trait: Fn(Value) -> Value {}

tests/crashes/131535.rs

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
//@ known-bug: #131535
2+
#![feature(non_lifetime_binders)]
3+
trait v0<> {}
4+
fn kind :(v0<'_, > impl for<v4> v0<'_, v2 = impl v0<v4> + '_>) {}

tests/crashes/131538.rs

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
//@ known-bug: #131538
2+
#![feature(generic_associated_types_extended)]
3+
#![feature(trivial_bounds)]
4+
5+
trait HealthCheck {
6+
async fn check<const N: usize>();
7+
}
8+
9+
fn do_health_check_par()
10+
where
11+
HealthCheck: HealthCheck,
12+
{
13+
}

0 commit comments

Comments
 (0)