File tree 3 files changed +4
-1
lines changed
3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,6 @@ static EXPRS: &[&str] = &[
129
129
"(0.).to_string()",
130
130
"0. .. 1.",
131
131
*/
132
- "i as dyn* Trait" ,
133
132
] ;
134
133
135
134
// Flatten the content of parenthesis nodes into their parent node. For example
Original file line number Diff line number Diff line change 9
9
#![ feature( const_trait_impl) ]
10
10
#![ feature( decl_macro) ]
11
11
#![ feature( deref_patterns) ]
12
+ #![ feature( dyn_star) ]
12
13
#![ feature( explicit_tail_calls) ]
13
14
#![ feature( gen_blocks) ]
14
15
#![ feature( let_chains) ]
@@ -800,6 +801,7 @@ mod types {
800
801
let _: dyn Send + ' static ;
801
802
let _: dyn ' static + Send ;
802
803
let _: dyn for < ' a > Send ;
804
+ let _: dyn * Send ;
803
805
}
804
806
805
807
/// TyKind::ImplTrait
Original file line number Diff line number Diff line change 10
10
#![feature(const_trait_impl)]
11
11
#![feature(decl_macro)]
12
12
#![feature(deref_patterns)]
13
+ #![feature(dyn_star)]
13
14
#![feature(explicit_tail_calls)]
14
15
#![feature(gen_blocks)]
15
16
#![feature(let_chains)]
@@ -647,6 +648,7 @@ mod types {
647
648
let _: dyn Send + 'static;
648
649
let _: dyn 'static + Send;
649
650
let _: dyn for<'a> Send;
651
+ let _: dyn* Send;
650
652
}
651
653
/// TyKind::ImplTrait
652
654
const fn ty_impl_trait() {
You can’t perform that action at this time.
0 commit comments