@@ -102,7 +102,7 @@ pub struct Empty {
102
102
/// assert!(buffer.is_empty());
103
103
/// ```
104
104
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
105
- #[ rustc_const_unstable( feature = "const_io_structs" , issue = "none " ) ]
105
+ #[ rustc_const_unstable( feature = "const_io_structs" , issue = "78812 " ) ]
106
106
pub const fn empty ( ) -> Empty {
107
107
Empty { _priv : ( ) }
108
108
}
@@ -160,7 +160,7 @@ pub struct Repeat {
160
160
/// assert_eq!(buffer, [0b101, 0b101, 0b101]);
161
161
/// ```
162
162
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
163
- #[ rustc_const_unstable( feature = "const_io_structs" , issue = "none " ) ]
163
+ #[ rustc_const_unstable( feature = "const_io_structs" , issue = "78812 " ) ]
164
164
pub const fn repeat ( byte : u8 ) -> Repeat {
165
165
Repeat { byte }
166
166
}
@@ -228,7 +228,7 @@ pub struct Sink {
228
228
/// assert_eq!(num_bytes, 5);
229
229
/// ```
230
230
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
231
- #[ rustc_const_unstable( feature = "const_io_structs" , issue = "none " ) ]
231
+ #[ rustc_const_unstable( feature = "const_io_structs" , issue = "78812 " ) ]
232
232
pub const fn sink ( ) -> Sink {
233
233
Sink { _priv : ( ) }
234
234
}
0 commit comments