File tree Expand file tree Collapse file tree 4 files changed +32
-0
lines changed Expand file tree Collapse file tree 4 files changed +32
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
1
+ //@ known-bug: #131534
2
+ #![ feature( generic_const_exprs) ]
3
+ type Value < ' v > = & [ [ u8 ; SIZE ] ] ;
4
+
5
+ trait Trait : Fn ( Value ) -> Value { }
Original file line number Diff line number Diff line change
1
+ //@ known-bug: #131535
2
+ #![ feature( non_lifetime_binders) ]
3
+ trait v0 <> { }
4
+ fn kind : ( v0 < ' _ , > impl for < v4 > v0 < ' _ , v2 = impl v0 < v4 > + ' _ > ) { }
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments