@@ -102,7 +102,7 @@ pub struct Empty {
102102/// assert!(buffer.is_empty());
103103/// ```
104104#[ 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 " ) ]
106106pub const fn empty ( ) -> Empty {
107107 Empty { _priv : ( ) }
108108}
@@ -160,7 +160,7 @@ pub struct Repeat {
160160/// assert_eq!(buffer, [0b101, 0b101, 0b101]);
161161/// ```
162162#[ 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 " ) ]
164164pub const fn repeat ( byte : u8 ) -> Repeat {
165165 Repeat { byte }
166166}
@@ -228,7 +228,7 @@ pub struct Sink {
228228/// assert_eq!(num_bytes, 5);
229229/// ```
230230#[ 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 " ) ]
232232pub const fn sink ( ) -> Sink {
233233 Sink { _priv : ( ) }
234234}
0 commit comments