File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ use crate::marker::Tuple;
7
7
#[ cfg_attr( bootstrap, unstable( feature = "async_closure" , issue = "62290" ) ) ]
8
8
#[ cfg_attr( not( bootstrap) , stable( feature = "async_closure" , since = "1.85.0" ) ) ]
9
9
#[ rustc_paren_sugar]
10
- #[ fundamental]
11
10
#[ must_use = "async closures are lazy and do nothing unless called" ]
12
11
#[ lang = "async_fn" ]
13
12
pub trait AsyncFn < Args : Tuple > : AsyncFnMut < Args > {
@@ -22,7 +21,6 @@ pub trait AsyncFn<Args: Tuple>: AsyncFnMut<Args> {
22
21
#[ cfg_attr( bootstrap, unstable( feature = "async_closure" , issue = "62290" ) ) ]
23
22
#[ cfg_attr( not( bootstrap) , stable( feature = "async_closure" , since = "1.85.0" ) ) ]
24
23
#[ rustc_paren_sugar]
25
- #[ fundamental]
26
24
#[ must_use = "async closures are lazy and do nothing unless called" ]
27
25
#[ lang = "async_fn_mut" ]
28
26
pub trait AsyncFnMut < Args : Tuple > : AsyncFnOnce < Args > {
@@ -44,7 +42,6 @@ pub trait AsyncFnMut<Args: Tuple>: AsyncFnOnce<Args> {
44
42
#[ cfg_attr( bootstrap, unstable( feature = "async_closure" , issue = "62290" ) ) ]
45
43
#[ cfg_attr( not( bootstrap) , stable( feature = "async_closure" , since = "1.85.0" ) ) ]
46
44
#[ rustc_paren_sugar]
47
- #[ fundamental]
48
45
#[ must_use = "async closures are lazy and do nothing unless called" ]
49
46
#[ lang = "async_fn_once" ]
50
47
pub trait AsyncFnOnce < Args : Tuple > {
You can’t perform that action at this time.
0 commit comments