We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2760f87 commit 14be8a7Copy full SHA for 14be8a7
src/libstd/lib.rs
@@ -243,7 +243,7 @@
243
#![feature(compiler_builtins_lib)]
244
#![feature(concat_idents)]
245
#![cfg_attr(stage0, feature(const_int_ops))]
246
-#![feature(const_ip)]
+#![cfg_attr(stage0, feature(const_ip))]
247
#![feature(const_raw_ptr_deref)]
248
#![feature(const_cstr_unchecked)]
249
#![feature(core_intrinsics)]
src/libstd/net/ip.rs
@@ -328,7 +328,7 @@ impl Ipv4Addr {
328
/// let addr = Ipv4Addr::new(127, 0, 0, 1);
329
/// ```
330
#[stable(feature = "rust1", since = "1.0.0")]
331
- #[rustc_const_unstable(feature = "const_ip")]
+ #[cfg_attr(stage0, rustc_const_unstable(feature = "const_ip"))]
332
pub const fn new(a: u8, b: u8, c: u8, d: u8) -> Ipv4Addr {
333
Ipv4Addr {
334
inner: c::in_addr {
0 commit comments