@@ -108,7 +108,7 @@ pub trait Drop {
108
108
// based on "op T" where T is expected to be `Copy`able
109
109
macro_rules! forward_ref_unop {
110
110
( impl $imp: ident, $method: ident for $t: ty) => {
111
- #[ unstable]
111
+ #[ unstable = "recently added, waiting for dust to settle" ]
112
112
impl <' a> $imp for & ' a $t {
113
113
type Output = <$t as $imp>:: Output ;
114
114
@@ -124,7 +124,7 @@ macro_rules! forward_ref_unop {
124
124
// based on "T op U" where T and U are expected to be `Copy`able
125
125
macro_rules! forward_ref_binop {
126
126
( impl $imp: ident, $method: ident for $t: ty, $u: ty) => {
127
- #[ unstable]
127
+ #[ unstable = "recently added, waiting for dust to settle" ]
128
128
impl <' a> $imp<$u> for & ' a $t {
129
129
type Output = <$t as $imp<$u>>:: Output ;
130
130
@@ -134,7 +134,7 @@ macro_rules! forward_ref_binop {
134
134
}
135
135
}
136
136
137
- #[ unstable]
137
+ #[ unstable = "recently added, waiting for dust to settle" ]
138
138
impl <' a> $imp<& ' a $u> for $t {
139
139
type Output = <$t as $imp<$u>>:: Output ;
140
140
@@ -144,7 +144,7 @@ macro_rules! forward_ref_binop {
144
144
}
145
145
}
146
146
147
- #[ unstable]
147
+ #[ unstable = "recently added, waiting for dust to settle" ]
148
148
impl <' a, ' b> $imp<& ' a $u> for & ' b $t {
149
149
type Output = <$t as $imp<$u>>:: Output ;
150
150
0 commit comments