Reword tracking issue note

This commit is contained in:
Esteban Küber 2019-04-11 11:42:06 -07:00
parent 3ab97062cf
commit 146d040f0b
155 changed files with 375 additions and 372 deletions

View file

@ -1481,9 +1481,12 @@ fn leveled_feature_err<'a>(
};
match issue {
None | Some(0) => {}
None | Some(0) => {} // We still accept `0` as a stand-in for backwards compatibility
Some(n) => {
err.note(&format!("for more information, see tracking issue #{}", n));
err.note(&format!(
"for more information, see https://github.com/rust-lang/rust/issues/{}",
n,
));
}
}

View file

@ -4,7 +4,7 @@ error[E0658]: casting pointers to integers in constants is unstable
LL | main as u32
| ^^^^^^^^^^^
|
= note: for more information, see tracking issue #51910
= note: for more information, see https://github.com/rust-lang/rust/issues/51910
= help: add #![feature(const_raw_ptr_to_usize_cast)] to the crate attributes to enable
error[E0658]: casting pointers to integers in constants is unstable
@ -13,7 +13,7 @@ error[E0658]: casting pointers to integers in constants is unstable
LL | &Y as *const u32 as u32
| ^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #51910
= note: for more information, see https://github.com/rust-lang/rust/issues/51910
= help: add #![feature(const_raw_ptr_to_usize_cast)] to the crate attributes to enable
error: aborting due to 2 previous errors

View file

@ -4,7 +4,7 @@ error[E0658]: no_core is experimental
LL | #![cfg_attr(broken, no_core)]
| ^^^^^^^
|
= note: for more information, see tracking issue #29639
= note: for more information, see https://github.com/rust-lang/rust/issues/29639
= help: add #![feature(no_core)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: no_core is experimental
LL | #![cfg_attr(broken, no_core, no_std)]
| ^^^^^^^
|
= note: for more information, see tracking issue #29639
= note: for more information, see https://github.com/rust-lang/rust/issues/29639
= help: add #![feature(no_core)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: no_core is experimental
LL | #![cfg_attr(broken, no_std, no_core)]
| ^^^^^^^
|
= note: for more information, see tracking issue #29639
= note: for more information, see https://github.com/rust-lang/rust/issues/29639
= help: add #![feature(no_core)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -7,7 +7,7 @@ LL | #[cfg_attr(all(), unknown)]
LL | foo!();
| ------- in this macro invocation
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: dereferencing raw pointers in statics is unstable
LL | static C: u64 = unsafe {*(0xdeadbeef as *const u64)};
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #51911
= note: for more information, see https://github.com/rust-lang/rust/issues/51911
= help: add #![feature(const_raw_ptr_deref)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: unions in const fn are unstable
LL | Foo { u }.i
| ^^^^^^^^^^^
|
= note: for more information, see tracking issue #51909
= note: for more information, see https://github.com/rust-lang/rust/issues/51909
= help: add #![feature(const_fn_union)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: panicking in constants is unstable
LL | const Z: () = panic!("cheese");
| ^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #51999
= note: for more information, see https://github.com/rust-lang/rust/issues/51999
= help: add #![feature(const_panic)] to the crate attributes to enable
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
@ -14,7 +14,7 @@ error[E0658]: panicking in constants is unstable
LL | const X: () = unimplemented!();
| ^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #51999
= note: for more information, see https://github.com/rust-lang/rust/issues/51999
= help: add #![feature(const_panic)] to the crate attributes to enable
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
@ -24,7 +24,7 @@ error[E0658]: panicking in constants is unstable
LL | const Y: () = unreachable!();
| ^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #51999
= note: for more information, see https://github.com/rust-lang/rust/issues/51999
= help: add #![feature(const_panic)] to the crate attributes to enable
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)

View file

@ -5,7 +5,7 @@ fn main() {
let _: [u8; 0] = [4; {
match &1 as *const i32 as usize {
//~^ ERROR casting pointers to integers in constants
//~| NOTE for more information, see tracking issue #51910
//~| NOTE for more information, see
0 => 42, //~ ERROR constant contains unimplemented expression type
//~^ NOTE "pointer arithmetic or comparison" needs an rfc before being allowed
//~| ERROR evaluation of constant value failed

View file

@ -4,7 +4,7 @@ error[E0658]: casting pointers to integers in constants is unstable
LL | match &1 as *const i32 as usize {
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #51910
= note: for more information, see https://github.com/rust-lang/rust/issues/51910
= help: add #![feature(const_raw_ptr_to_usize_cast)] to the crate attributes to enable
error[E0019]: constant contains unimplemented expression type

View file

@ -4,7 +4,7 @@ error[E0658]: dereferencing raw pointers in constant functions is unstable
LL | const fn bad_const_fn_deref_raw(x: *mut usize) -> &'static usize { unsafe { &*x } }
| ^^^
|
= note: for more information, see tracking issue #51911
= note: for more information, see https://github.com/rust-lang/rust/issues/51911
= help: add #![feature(const_raw_ptr_deref)] to the crate attributes to enable
error[E0658]: dereferencing raw pointers in constant functions is unstable
@ -13,7 +13,7 @@ error[E0658]: dereferencing raw pointers in constant functions is unstable
LL | const unsafe fn bad_const_unsafe_deref_raw(x: *mut usize) -> usize { *x }
| ^^
|
= note: for more information, see tracking issue #51911
= note: for more information, see https://github.com/rust-lang/rust/issues/51911
= help: add #![feature(const_raw_ptr_deref)] to the crate attributes to enable
error[E0658]: dereferencing raw pointers in constant functions is unstable
@ -22,7 +22,7 @@ error[E0658]: dereferencing raw pointers in constant functions is unstable
LL | const unsafe fn bad_const_unsafe_deref_raw_ref(x: *mut usize) -> &'static usize { &*x }
| ^^^
|
= note: for more information, see tracking issue #51911
= note: for more information, see https://github.com/rust-lang/rust/issues/51911
= help: add #![feature(const_raw_ptr_deref)] to the crate attributes to enable
error[E0658]: unions in const fn are unstable
@ -31,7 +31,7 @@ error[E0658]: unions in const fn are unstable
LL | Foo { x: () }.y
| ^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #51909
= note: for more information, see https://github.com/rust-lang/rust/issues/51909
= help: add #![feature(const_fn_union)] to the crate attributes to enable
error[E0133]: dereference of raw pointer is unsafe and requires unsafe function or block

View file

@ -16,7 +16,7 @@ error[E0658]: dereferencing raw pointers in constants is unstable
LL | unsafe { *b = 5; }
| ^^^^^^
|
= note: for more information, see tracking issue #51911
= note: for more information, see https://github.com/rust-lang/rust/issues/51911
= help: add #![feature(const_raw_ptr_deref)] to the crate attributes to enable
error: aborting due to 3 previous errors

View file

@ -4,7 +4,7 @@ error[E0658]: The attribute `foo` is currently unknown to the compiler and may h
LL | #[foo]
| ^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `foo` is currently unknown to the compiler and may have meaning added to it in the future
@ -13,7 +13,7 @@ error[E0658]: The attribute `foo` is currently unknown to the compiler and may h
LL | #[foo]
| ^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `foo` is currently unknown to the compiler and may have meaning added to it in the future
@ -22,7 +22,7 @@ error[E0658]: The attribute `foo` is currently unknown to the compiler and may h
LL | #[foo]
| ^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error: aborting due to 3 previous errors

View file

@ -4,7 +4,7 @@ error[E0658]: comparing raw pointers inside static
LL | static BAZ: bool = unsafe { (&FOO as *const i32) == (&BAR as *const i32) };
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #53020
= note: for more information, see https://github.com/rust-lang/rust/issues/53020
= help: add #![feature(const_compare_raw_pointers)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: dereferencing raw pointers in constants is unstable
LL | const VALUE: u8 = unsafe { *REG_ADDR };
| ^^^^^^^^^
|
= note: for more information, see tracking issue #51911
= note: for more information, see https://github.com/rust-lang/rust/issues/51911
= help: add #![feature(const_raw_ptr_deref)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -6,7 +6,7 @@ LL | | Bar(u64),
LL | | }
| |_^
|
= note: for more information, see tracking issue #35118
= note: for more information, see https://github.com/rust-lang/rust/issues/35118
= help: add #![feature(repr128)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: use of unstable library feature 'unstable_undeclared'
LL | let Record { a_stable_pub: _, a_unstable_declared_pub: _, a_unstable_undeclared_pub: _, .. } =
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #38412
= note: for more information, see https://github.com/rust-lang/rust/issues/38412
= help: add #![feature(unstable_undeclared)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_undeclared'
@ -13,7 +13,7 @@ error[E0658]: use of unstable library feature 'unstable_undeclared'
LL | r.a_unstable_undeclared_pub;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #38412
= note: for more information, see https://github.com/rust-lang/rust/issues/38412
= help: add #![feature(unstable_undeclared)] to the crate attributes to enable
error[E0616]: field `b_crate` of struct `pub_and_stability::Record` is private
@ -40,7 +40,7 @@ error[E0658]: use of unstable library feature 'unstable_undeclared'
LL | t.2;
| ^^^
|
= note: for more information, see tracking issue #38412
= note: for more information, see https://github.com/rust-lang/rust/issues/38412
= help: add #![feature(unstable_undeclared)] to the crate attributes to enable
error[E0616]: field `3` of struct `pub_and_stability::Tuple` is private
@ -67,7 +67,7 @@ error[E0658]: use of unstable library feature 'unstable_undeclared'
LL | r.unstable_undeclared_trait_method();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #38412
= note: for more information, see https://github.com/rust-lang/rust/issues/38412
= help: add #![feature(unstable_undeclared)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_undeclared'
@ -76,7 +76,7 @@ error[E0658]: use of unstable library feature 'unstable_undeclared'
LL | r.unstable_undeclared();
| ^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #38412
= note: for more information, see https://github.com/rust-lang/rust/issues/38412
= help: add #![feature(unstable_undeclared)] to the crate attributes to enable
error[E0624]: method `pub_crate` is private
@ -103,7 +103,7 @@ error[E0658]: use of unstable library feature 'unstable_undeclared'
LL | t.unstable_undeclared_trait_method();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #38412
= note: for more information, see https://github.com/rust-lang/rust/issues/38412
= help: add #![feature(unstable_undeclared)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_undeclared'
@ -112,7 +112,7 @@ error[E0658]: use of unstable library feature 'unstable_undeclared'
LL | t.unstable_undeclared();
| ^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #38412
= note: for more information, see https://github.com/rust-lang/rust/issues/38412
= help: add #![feature(unstable_undeclared)] to the crate attributes to enable
error[E0624]: method `pub_crate` is private

View file

@ -4,7 +4,7 @@ error[E0658]: #[optimize] attribute is an unstable feature
LL | #[optimize(size)]
| ^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #54882
= note: for more information, see https://github.com/rust-lang/rust/issues/54882
= help: add #![feature(optimize_attribute)] to the crate attributes to enable
error[E0658]: #[optimize] attribute is an unstable feature
@ -13,7 +13,7 @@ error[E0658]: #[optimize] attribute is an unstable feature
LL | #[optimize(speed)]
| ^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #54882
= note: for more information, see https://github.com/rust-lang/rust/issues/54882
= help: add #![feature(optimize_attribute)] to the crate attributes to enable
error[E0658]: #[optimize] attribute is an unstable feature
@ -22,7 +22,7 @@ error[E0658]: #[optimize] attribute is an unstable feature
LL | #[optimize(banana)]
| ^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #54882
= note: for more information, see https://github.com/rust-lang/rust/issues/54882
= help: add #![feature(optimize_attribute)] to the crate attributes to enable
error[E0658]: #[optimize] attribute is an unstable feature
@ -31,7 +31,7 @@ error[E0658]: #[optimize] attribute is an unstable feature
LL | #[optimize(size)]
| ^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #54882
= note: for more information, see https://github.com/rust-lang/rust/issues/54882
= help: add #![feature(optimize_attribute)] to the crate attributes to enable
error[E0658]: #[optimize] attribute is an unstable feature
@ -40,7 +40,7 @@ error[E0658]: #[optimize] attribute is an unstable feature
LL | #![optimize(speed)]
| ^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #54882
= note: for more information, see https://github.com/rust-lang/rust/issues/54882
= help: add #![feature(optimize_attribute)] to the crate attributes to enable
error[E0722]: invalid argument

View file

@ -4,7 +4,7 @@ error[E0658]: C-varaidic functions are unstable
LL | pub unsafe extern "C" fn test(_: i32, ap: ...) { }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #44930
= note: for more information, see https://github.com/rust-lang/rust/issues/44930
= help: add #![feature(c_variadic)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -1,6 +1,6 @@
error[E0658]: kind="static-nobundle" is feature gated
|
= note: for more information, see tracking issue #37403
= note: for more information, see https://github.com/rust-lang/rust/issues/37403
= help: add #![feature(static_nobundle)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: msp430-interrupt ABI is experimental and subject to change
LL | extern "msp430-interrupt" fn foo() {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #38487
= note: for more information, see https://github.com/rust-lang/rust/issues/38487
= help: add #![feature(abi_msp430_interrupt)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -12,7 +12,7 @@ error[E0658]: platform intrinsics are experimental and possibly buggy
LL | extern "platform-intrinsic" fn f2() {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #27731
= note: for more information, see https://github.com/rust-lang/rust/issues/27731
= help: add #![feature(platform_intrinsics)] to the crate attributes to enable
error[E0658]: vectorcall is experimental and subject to change
@ -29,7 +29,7 @@ error[E0658]: rust-call ABI is subject to change
LL | extern "rust-call" fn f4() {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29625
= note: for more information, see https://github.com/rust-lang/rust/issues/29625
= help: add #![feature(unboxed_closures)] to the crate attributes to enable
error[E0658]: msp430-interrupt ABI is experimental and subject to change
@ -38,7 +38,7 @@ error[E0658]: msp430-interrupt ABI is experimental and subject to change
LL | extern "msp430-interrupt" fn f5() {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #38487
= note: for more information, see https://github.com/rust-lang/rust/issues/38487
= help: add #![feature(abi_msp430_interrupt)] to the crate attributes to enable
error[E0658]: PTX ABIs are experimental and subject to change
@ -47,7 +47,7 @@ error[E0658]: PTX ABIs are experimental and subject to change
LL | extern "ptx-kernel" fn f6() {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #38788
= note: for more information, see https://github.com/rust-lang/rust/issues/38788
= help: add #![feature(abi_ptx)] to the crate attributes to enable
error[E0658]: x86-interrupt ABI is experimental and subject to change
@ -56,7 +56,7 @@ error[E0658]: x86-interrupt ABI is experimental and subject to change
LL | extern "x86-interrupt" fn f7() {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #40180
= note: for more information, see https://github.com/rust-lang/rust/issues/40180
= help: add #![feature(abi_x86_interrupt)] to the crate attributes to enable
error[E0658]: thiscall is experimental and subject to change
@ -73,7 +73,7 @@ error[E0658]: amdgpu-kernel ABI is experimental and subject to change
LL | extern "amdgpu-kernel" fn f9() {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #51575
= note: for more information, see https://github.com/rust-lang/rust/issues/51575
= help: add #![feature(abi_amdgpu_kernel)] to the crate attributes to enable
error[E0658]: intrinsics are subject to change
@ -90,7 +90,7 @@ error[E0658]: platform intrinsics are experimental and possibly buggy
LL | extern "platform-intrinsic" fn m2();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #27731
= note: for more information, see https://github.com/rust-lang/rust/issues/27731
= help: add #![feature(platform_intrinsics)] to the crate attributes to enable
error[E0658]: vectorcall is experimental and subject to change
@ -107,7 +107,7 @@ error[E0658]: rust-call ABI is subject to change
LL | extern "rust-call" fn m4();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29625
= note: for more information, see https://github.com/rust-lang/rust/issues/29625
= help: add #![feature(unboxed_closures)] to the crate attributes to enable
error[E0658]: msp430-interrupt ABI is experimental and subject to change
@ -116,7 +116,7 @@ error[E0658]: msp430-interrupt ABI is experimental and subject to change
LL | extern "msp430-interrupt" fn m5();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #38487
= note: for more information, see https://github.com/rust-lang/rust/issues/38487
= help: add #![feature(abi_msp430_interrupt)] to the crate attributes to enable
error[E0658]: PTX ABIs are experimental and subject to change
@ -125,7 +125,7 @@ error[E0658]: PTX ABIs are experimental and subject to change
LL | extern "ptx-kernel" fn m6();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #38788
= note: for more information, see https://github.com/rust-lang/rust/issues/38788
= help: add #![feature(abi_ptx)] to the crate attributes to enable
error[E0658]: x86-interrupt ABI is experimental and subject to change
@ -134,7 +134,7 @@ error[E0658]: x86-interrupt ABI is experimental and subject to change
LL | extern "x86-interrupt" fn m7();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #40180
= note: for more information, see https://github.com/rust-lang/rust/issues/40180
= help: add #![feature(abi_x86_interrupt)] to the crate attributes to enable
error[E0658]: thiscall is experimental and subject to change
@ -151,7 +151,7 @@ error[E0658]: amdgpu-kernel ABI is experimental and subject to change
LL | extern "amdgpu-kernel" fn m9();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #51575
= note: for more information, see https://github.com/rust-lang/rust/issues/51575
= help: add #![feature(abi_amdgpu_kernel)] to the crate attributes to enable
error[E0658]: intrinsics are subject to change
@ -168,7 +168,7 @@ error[E0658]: platform intrinsics are experimental and possibly buggy
LL | extern "platform-intrinsic" fn dm2() {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #27731
= note: for more information, see https://github.com/rust-lang/rust/issues/27731
= help: add #![feature(platform_intrinsics)] to the crate attributes to enable
error[E0658]: vectorcall is experimental and subject to change
@ -185,7 +185,7 @@ error[E0658]: rust-call ABI is subject to change
LL | extern "rust-call" fn dm4() {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29625
= note: for more information, see https://github.com/rust-lang/rust/issues/29625
= help: add #![feature(unboxed_closures)] to the crate attributes to enable
error[E0658]: msp430-interrupt ABI is experimental and subject to change
@ -194,7 +194,7 @@ error[E0658]: msp430-interrupt ABI is experimental and subject to change
LL | extern "msp430-interrupt" fn dm5() {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #38487
= note: for more information, see https://github.com/rust-lang/rust/issues/38487
= help: add #![feature(abi_msp430_interrupt)] to the crate attributes to enable
error[E0658]: PTX ABIs are experimental and subject to change
@ -203,7 +203,7 @@ error[E0658]: PTX ABIs are experimental and subject to change
LL | extern "ptx-kernel" fn dm6() {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #38788
= note: for more information, see https://github.com/rust-lang/rust/issues/38788
= help: add #![feature(abi_ptx)] to the crate attributes to enable
error[E0658]: x86-interrupt ABI is experimental and subject to change
@ -212,7 +212,7 @@ error[E0658]: x86-interrupt ABI is experimental and subject to change
LL | extern "x86-interrupt" fn dm7() {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #40180
= note: for more information, see https://github.com/rust-lang/rust/issues/40180
= help: add #![feature(abi_x86_interrupt)] to the crate attributes to enable
error[E0658]: thiscall is experimental and subject to change
@ -229,7 +229,7 @@ error[E0658]: amdgpu-kernel ABI is experimental and subject to change
LL | extern "amdgpu-kernel" fn dm9() {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #51575
= note: for more information, see https://github.com/rust-lang/rust/issues/51575
= help: add #![feature(abi_amdgpu_kernel)] to the crate attributes to enable
error[E0658]: intrinsics are subject to change
@ -246,7 +246,7 @@ error[E0658]: platform intrinsics are experimental and possibly buggy
LL | extern "platform-intrinsic" fn m2() {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #27731
= note: for more information, see https://github.com/rust-lang/rust/issues/27731
= help: add #![feature(platform_intrinsics)] to the crate attributes to enable
error[E0658]: vectorcall is experimental and subject to change
@ -263,7 +263,7 @@ error[E0658]: rust-call ABI is subject to change
LL | extern "rust-call" fn m4() {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29625
= note: for more information, see https://github.com/rust-lang/rust/issues/29625
= help: add #![feature(unboxed_closures)] to the crate attributes to enable
error[E0658]: msp430-interrupt ABI is experimental and subject to change
@ -272,7 +272,7 @@ error[E0658]: msp430-interrupt ABI is experimental and subject to change
LL | extern "msp430-interrupt" fn m5() {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #38487
= note: for more information, see https://github.com/rust-lang/rust/issues/38487
= help: add #![feature(abi_msp430_interrupt)] to the crate attributes to enable
error[E0658]: PTX ABIs are experimental and subject to change
@ -281,7 +281,7 @@ error[E0658]: PTX ABIs are experimental and subject to change
LL | extern "ptx-kernel" fn m6() {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #38788
= note: for more information, see https://github.com/rust-lang/rust/issues/38788
= help: add #![feature(abi_ptx)] to the crate attributes to enable
error[E0658]: x86-interrupt ABI is experimental and subject to change
@ -290,7 +290,7 @@ error[E0658]: x86-interrupt ABI is experimental and subject to change
LL | extern "x86-interrupt" fn m7() {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #40180
= note: for more information, see https://github.com/rust-lang/rust/issues/40180
= help: add #![feature(abi_x86_interrupt)] to the crate attributes to enable
error[E0658]: thiscall is experimental and subject to change
@ -307,7 +307,7 @@ error[E0658]: amdgpu-kernel ABI is experimental and subject to change
LL | extern "amdgpu-kernel" fn m9() {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #51575
= note: for more information, see https://github.com/rust-lang/rust/issues/51575
= help: add #![feature(abi_amdgpu_kernel)] to the crate attributes to enable
error[E0658]: intrinsics are subject to change
@ -324,7 +324,7 @@ error[E0658]: platform intrinsics are experimental and possibly buggy
LL | extern "platform-intrinsic" fn im2() {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #27731
= note: for more information, see https://github.com/rust-lang/rust/issues/27731
= help: add #![feature(platform_intrinsics)] to the crate attributes to enable
error[E0658]: vectorcall is experimental and subject to change
@ -341,7 +341,7 @@ error[E0658]: rust-call ABI is subject to change
LL | extern "rust-call" fn im4() {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29625
= note: for more information, see https://github.com/rust-lang/rust/issues/29625
= help: add #![feature(unboxed_closures)] to the crate attributes to enable
error[E0658]: msp430-interrupt ABI is experimental and subject to change
@ -350,7 +350,7 @@ error[E0658]: msp430-interrupt ABI is experimental and subject to change
LL | extern "msp430-interrupt" fn im5() {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #38487
= note: for more information, see https://github.com/rust-lang/rust/issues/38487
= help: add #![feature(abi_msp430_interrupt)] to the crate attributes to enable
error[E0658]: PTX ABIs are experimental and subject to change
@ -359,7 +359,7 @@ error[E0658]: PTX ABIs are experimental and subject to change
LL | extern "ptx-kernel" fn im6() {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #38788
= note: for more information, see https://github.com/rust-lang/rust/issues/38788
= help: add #![feature(abi_ptx)] to the crate attributes to enable
error[E0658]: x86-interrupt ABI is experimental and subject to change
@ -368,7 +368,7 @@ error[E0658]: x86-interrupt ABI is experimental and subject to change
LL | extern "x86-interrupt" fn im7() {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #40180
= note: for more information, see https://github.com/rust-lang/rust/issues/40180
= help: add #![feature(abi_x86_interrupt)] to the crate attributes to enable
error[E0658]: thiscall is experimental and subject to change
@ -385,7 +385,7 @@ error[E0658]: amdgpu-kernel ABI is experimental and subject to change
LL | extern "amdgpu-kernel" fn im9() {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #51575
= note: for more information, see https://github.com/rust-lang/rust/issues/51575
= help: add #![feature(abi_amdgpu_kernel)] to the crate attributes to enable
error[E0658]: intrinsics are subject to change
@ -402,7 +402,7 @@ error[E0658]: platform intrinsics are experimental and possibly buggy
LL | type A2 = extern "platform-intrinsic" fn();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #27731
= note: for more information, see https://github.com/rust-lang/rust/issues/27731
= help: add #![feature(platform_intrinsics)] to the crate attributes to enable
error[E0658]: vectorcall is experimental and subject to change
@ -419,7 +419,7 @@ error[E0658]: rust-call ABI is subject to change
LL | type A4 = extern "rust-call" fn();
| ^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29625
= note: for more information, see https://github.com/rust-lang/rust/issues/29625
= help: add #![feature(unboxed_closures)] to the crate attributes to enable
error[E0658]: msp430-interrupt ABI is experimental and subject to change
@ -428,7 +428,7 @@ error[E0658]: msp430-interrupt ABI is experimental and subject to change
LL | type A5 = extern "msp430-interrupt" fn();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #38487
= note: for more information, see https://github.com/rust-lang/rust/issues/38487
= help: add #![feature(abi_msp430_interrupt)] to the crate attributes to enable
error[E0658]: PTX ABIs are experimental and subject to change
@ -437,7 +437,7 @@ error[E0658]: PTX ABIs are experimental and subject to change
LL | type A6 = extern "ptx-kernel" fn ();
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #38788
= note: for more information, see https://github.com/rust-lang/rust/issues/38788
= help: add #![feature(abi_ptx)] to the crate attributes to enable
error[E0658]: x86-interrupt ABI is experimental and subject to change
@ -446,7 +446,7 @@ error[E0658]: x86-interrupt ABI is experimental and subject to change
LL | type A7 = extern "x86-interrupt" fn();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #40180
= note: for more information, see https://github.com/rust-lang/rust/issues/40180
= help: add #![feature(abi_x86_interrupt)] to the crate attributes to enable
error[E0658]: thiscall is experimental and subject to change
@ -463,7 +463,7 @@ error[E0658]: amdgpu-kernel ABI is experimental and subject to change
LL | type A9 = extern "amdgpu-kernel" fn();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #51575
= note: for more information, see https://github.com/rust-lang/rust/issues/51575
= help: add #![feature(abi_amdgpu_kernel)] to the crate attributes to enable
error[E0658]: intrinsics are subject to change
@ -480,7 +480,7 @@ error[E0658]: platform intrinsics are experimental and possibly buggy
LL | extern "platform-intrinsic" {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #27731
= note: for more information, see https://github.com/rust-lang/rust/issues/27731
= help: add #![feature(platform_intrinsics)] to the crate attributes to enable
error[E0658]: vectorcall is experimental and subject to change
@ -497,7 +497,7 @@ error[E0658]: rust-call ABI is subject to change
LL | extern "rust-call" {}
| ^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29625
= note: for more information, see https://github.com/rust-lang/rust/issues/29625
= help: add #![feature(unboxed_closures)] to the crate attributes to enable
error[E0658]: msp430-interrupt ABI is experimental and subject to change
@ -506,7 +506,7 @@ error[E0658]: msp430-interrupt ABI is experimental and subject to change
LL | extern "msp430-interrupt" {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #38487
= note: for more information, see https://github.com/rust-lang/rust/issues/38487
= help: add #![feature(abi_msp430_interrupt)] to the crate attributes to enable
error[E0658]: PTX ABIs are experimental and subject to change
@ -515,7 +515,7 @@ error[E0658]: PTX ABIs are experimental and subject to change
LL | extern "ptx-kernel" {}
| ^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #38788
= note: for more information, see https://github.com/rust-lang/rust/issues/38788
= help: add #![feature(abi_ptx)] to the crate attributes to enable
error[E0658]: x86-interrupt ABI is experimental and subject to change
@ -524,7 +524,7 @@ error[E0658]: x86-interrupt ABI is experimental and subject to change
LL | extern "x86-interrupt" {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #40180
= note: for more information, see https://github.com/rust-lang/rust/issues/40180
= help: add #![feature(abi_x86_interrupt)] to the crate attributes to enable
error[E0658]: thiscall is experimental and subject to change
@ -541,7 +541,7 @@ error[E0658]: amdgpu-kernel ABI is experimental and subject to change
LL | extern "amdgpu-kernel" {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #51575
= note: for more information, see https://github.com/rust-lang/rust/issues/51575
= help: add #![feature(abi_amdgpu_kernel)] to the crate attributes to enable
error: aborting due to 63 previous errors

View file

@ -4,7 +4,7 @@ error[E0658]: #[alloc_error_handler] is an unstable feature
LL | #[alloc_error_handler]
| ^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #51540
= note: for more information, see https://github.com/rust-lang/rust/issues/51540
= help: add #![feature(alloc_error_handler)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: allow_fail attribute is currently unstable
LL | #[allow_fail]
| ^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #46488
= note: for more information, see https://github.com/rust-lang/rust/issues/46488
= help: add #![feature(allow_fail)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: `Ptr<Self>` cannot be used as the type of `self` without the `arbi
LL | fn foo(self: Ptr<Self>);
| ^^^^^^^^^
|
= note: for more information, see tracking issue #44874
= note: for more information, see https://github.com/rust-lang/rust/issues/44874
= help: add #![feature(arbitrary_self_types)] to the crate attributes to enable
= help: consider changing to `self`, `&self`, `&mut self`, or `self: Box<Self>`
@ -14,7 +14,7 @@ error[E0658]: `Ptr<Bar>` cannot be used as the type of `self` without the `arbit
LL | fn foo(self: Ptr<Self>) {}
| ^^^^^^^^^
|
= note: for more information, see tracking issue #44874
= note: for more information, see https://github.com/rust-lang/rust/issues/44874
= help: add #![feature(arbitrary_self_types)] to the crate attributes to enable
= help: consider changing to `self`, `&self`, `&mut self`, or `self: Box<Self>`
@ -24,7 +24,7 @@ error[E0658]: `std::boxed::Box<Ptr<Bar>>` cannot be used as the type of `self` w
LL | fn bar(self: Box<Ptr<Self>>) {}
| ^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #44874
= note: for more information, see https://github.com/rust-lang/rust/issues/44874
= help: add #![feature(arbitrary_self_types)] to the crate attributes to enable
= help: consider changing to `self`, `&self`, `&mut self`, or `self: Box<Self>`

View file

@ -4,7 +4,7 @@ error[E0658]: `*const Self` cannot be used as the type of `self` without the `ar
LL | fn bar(self: *const Self);
| ^^^^^^^^^^^
|
= note: for more information, see tracking issue #44874
= note: for more information, see https://github.com/rust-lang/rust/issues/44874
= help: add #![feature(arbitrary_self_types)] to the crate attributes to enable
= help: consider changing to `self`, `&self`, `&mut self`, or `self: Box<Self>`
@ -14,7 +14,7 @@ error[E0658]: `*const Foo` cannot be used as the type of `self` without the `arb
LL | fn foo(self: *const Self) {}
| ^^^^^^^^^^^
|
= note: for more information, see tracking issue #44874
= note: for more information, see https://github.com/rust-lang/rust/issues/44874
= help: add #![feature(arbitrary_self_types)] to the crate attributes to enable
= help: consider changing to `self`, `&self`, `&mut self`, or `self: Box<Self>`
@ -24,7 +24,7 @@ error[E0658]: `*const ()` cannot be used as the type of `self` without the `arbi
LL | fn bar(self: *const Self) {}
| ^^^^^^^^^^^
|
= note: for more information, see tracking issue #44874
= note: for more information, see https://github.com/rust-lang/rust/issues/44874
= help: add #![feature(arbitrary_self_types)] to the crate attributes to enable
= help: consider changing to `self`, `&self`, `&mut self`, or `self: Box<Self>`

View file

@ -4,7 +4,7 @@ error[E0658]: inline assembly is not stable enough for use and is subject to cha
LL | asm!("");
| ^^^^^^^^^
|
= note: for more information, see tracking issue #29722
= note: for more information, see https://github.com/rust-lang/rust/issues/29722
= help: add #![feature(asm)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: inline assembly is not stable enough for use and is subject to cha
LL | println!("{:?}", asm!(""));
| ^^^^^^^^
|
= note: for more information, see tracking issue #29722
= note: for more information, see https://github.com/rust-lang/rust/issues/29722
= help: add #![feature(asm)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: associated type defaults are unstable
LL | type Bar = u8;
| ^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29661
= note: for more information, see https://github.com/rust-lang/rust/issues/29661
= help: add #![feature(associated_type_defaults)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -22,7 +22,7 @@ error[E0658]: async fn is unstable
LL | async fn foo() {}
| ^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #50547
= note: for more information, see https://github.com/rust-lang/rust/issues/50547
= help: add #![feature(async_await)] to the crate attributes to enable
error: aborting due to 4 previous errors

View file

@ -4,7 +4,7 @@ error[E0658]: async fn is unstable
LL | async fn foo() {}
| ^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #50547
= note: for more information, see https://github.com/rust-lang/rust/issues/50547
= help: add #![feature(async_await)] to the crate attributes to enable
error[E0658]: async blocks are unstable
@ -13,7 +13,7 @@ error[E0658]: async blocks are unstable
LL | let _ = async {};
| ^^^^^^^^
|
= note: for more information, see tracking issue #50547
= note: for more information, see https://github.com/rust-lang/rust/issues/50547
= help: add #![feature(async_await)] to the crate attributes to enable
error[E0658]: async closures are unstable
@ -22,7 +22,7 @@ error[E0658]: async closures are unstable
LL | let _ = async || {};
| ^^^^^^^^^^^
|
= note: for more information, see tracking issue #50547
= note: for more information, see https://github.com/rust-lang/rust/issues/50547
= help: add #![feature(async_await)] to the crate attributes to enable
error: aborting due to 3 previous errors

View file

@ -4,7 +4,7 @@ error[E0658]: box expression syntax is experimental; you can call `Box::new` ins
LL | let x = box 'c';
| ^^^^^^^
|
= note: for more information, see tracking issue #49733
= note: for more information, see https://github.com/rust-lang/rust/issues/49733
= help: add #![feature(box_syntax)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: box pattern syntax is experimental
LL | let box x = Box::new('c');
| ^^^^^
|
= note: for more information, see tracking issue #29641
= note: for more information, see https://github.com/rust-lang/rust/issues/29641
= help: add #![feature(box_patterns)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: box expression syntax is experimental; you can call `Box::new` ins
LL | let x = box 3;
| ^^^^^
|
= note: for more information, see tracking issue #49733
= note: for more information, see https://github.com/rust-lang/rust/issues/49733
= help: add #![feature(box_syntax)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
LL | #[cfg(target_has_atomic = "8")]
| ^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #32976
= note: for more information, see https://github.com/rust-lang/rust/issues/32976
= help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
@ -13,7 +13,7 @@ error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
LL | #[cfg(target_has_atomic = "8")]
| ^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #32976
= note: for more information, see https://github.com/rust-lang/rust/issues/32976
= help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
@ -22,7 +22,7 @@ error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
LL | #[cfg(target_has_atomic = "16")]
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #32976
= note: for more information, see https://github.com/rust-lang/rust/issues/32976
= help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
@ -31,7 +31,7 @@ error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
LL | #[cfg(target_has_atomic = "16")]
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #32976
= note: for more information, see https://github.com/rust-lang/rust/issues/32976
= help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
@ -40,7 +40,7 @@ error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
LL | #[cfg(target_has_atomic = "32")]
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #32976
= note: for more information, see https://github.com/rust-lang/rust/issues/32976
= help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
@ -49,7 +49,7 @@ error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
LL | #[cfg(target_has_atomic = "32")]
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #32976
= note: for more information, see https://github.com/rust-lang/rust/issues/32976
= help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
@ -58,7 +58,7 @@ error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
LL | #[cfg(target_has_atomic = "64")]
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #32976
= note: for more information, see https://github.com/rust-lang/rust/issues/32976
= help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
@ -67,7 +67,7 @@ error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
LL | #[cfg(target_has_atomic = "64")]
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #32976
= note: for more information, see https://github.com/rust-lang/rust/issues/32976
= help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
@ -76,7 +76,7 @@ error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
LL | #[cfg(target_has_atomic = "128")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #32976
= note: for more information, see https://github.com/rust-lang/rust/issues/32976
= help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
@ -85,7 +85,7 @@ error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
LL | #[cfg(target_has_atomic = "128")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #32976
= note: for more information, see https://github.com/rust-lang/rust/issues/32976
= help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
@ -94,7 +94,7 @@ error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
LL | #[cfg(target_has_atomic = "ptr")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #32976
= note: for more information, see https://github.com/rust-lang/rust/issues/32976
= help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
@ -103,7 +103,7 @@ error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
LL | #[cfg(target_has_atomic = "ptr")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #32976
= note: for more information, see https://github.com/rust-lang/rust/issues/32976
= help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
@ -112,7 +112,7 @@ error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
LL | cfg!(target_has_atomic = "8");
| ^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #32976
= note: for more information, see https://github.com/rust-lang/rust/issues/32976
= help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
@ -121,7 +121,7 @@ error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
LL | cfg!(target_has_atomic = "16");
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #32976
= note: for more information, see https://github.com/rust-lang/rust/issues/32976
= help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
@ -130,7 +130,7 @@ error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
LL | cfg!(target_has_atomic = "32");
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #32976
= note: for more information, see https://github.com/rust-lang/rust/issues/32976
= help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
@ -139,7 +139,7 @@ error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
LL | cfg!(target_has_atomic = "64");
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #32976
= note: for more information, see https://github.com/rust-lang/rust/issues/32976
= help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
@ -148,7 +148,7 @@ error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
LL | cfg!(target_has_atomic = "128");
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #32976
= note: for more information, see https://github.com/rust-lang/rust/issues/32976
= help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
@ -157,7 +157,7 @@ error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change
LL | cfg!(target_has_atomic = "ptr");
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #32976
= note: for more information, see https://github.com/rust-lang/rust/issues/32976
= help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
error: aborting due to 18 previous errors

View file

@ -4,7 +4,7 @@ error[E0658]: `cfg(target_thread_local)` is experimental and subject to change
LL | #[cfg_attr(target_thread_local, thread_local)]
| ^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29594
= note: for more information, see https://github.com/rust-lang/rust/issues/29594
= help: add #![feature(cfg_target_thread_local)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: `concat_idents` is not stable enough for use and is subject to cha
LL | let a = concat_idents!(X, Y_1);
| ^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29599
= note: for more information, see https://github.com/rust-lang/rust/issues/29599
= help: add #![feature(concat_idents)] to the crate attributes to enable
error[E0658]: `concat_idents` is not stable enough for use and is subject to change
@ -13,7 +13,7 @@ error[E0658]: `concat_idents` is not stable enough for use and is subject to cha
LL | let b = concat_idents!(X, Y_2);
| ^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29599
= note: for more information, see https://github.com/rust-lang/rust/issues/29599
= help: add #![feature(concat_idents)] to the crate attributes to enable
error: aborting due to 2 previous errors

View file

@ -4,7 +4,7 @@ error[E0658]: `concat_idents` is not stable enough for use and is subject to cha
LL | concat_idents!(a, b);
| ^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29599
= note: for more information, see https://github.com/rust-lang/rust/issues/29599
= help: add #![feature(concat_idents)] to the crate attributes to enable
error[E0425]: cannot find value `ab` in this scope

View file

@ -4,7 +4,7 @@ error[E0658]: `concat_idents` is not stable enough for use and is subject to cha
LL | assert_eq!(10, concat_idents!(X, Y_1));
| ^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29599
= note: for more information, see https://github.com/rust-lang/rust/issues/29599
= help: add #![feature(concat_idents)] to the crate attributes to enable
error[E0658]: `concat_idents` is not stable enough for use and is subject to change
@ -13,7 +13,7 @@ error[E0658]: `concat_idents` is not stable enough for use and is subject to cha
LL | assert_eq!(20, concat_idents!(X, Y_2));
| ^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29599
= note: for more information, see https://github.com/rust-lang/rust/issues/29599
= help: add #![feature(concat_idents)] to the crate attributes to enable
error: aborting due to 2 previous errors

View file

@ -22,7 +22,7 @@ error[E0658]: const fn is unstable
LL | const fn foo() -> u32;
| ^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #57563
= note: for more information, see https://github.com/rust-lang/rust/issues/57563
= help: add #![feature(const_fn)] to the crate attributes to enable
error[E0658]: const fn is unstable
@ -31,7 +31,7 @@ error[E0658]: const fn is unstable
LL | const fn bar() -> u32 { 0 }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #57563
= note: for more information, see https://github.com/rust-lang/rust/issues/57563
= help: add #![feature(const_fn)] to the crate attributes to enable
error: aborting due to 5 previous errors

View file

@ -4,7 +4,7 @@ error[E0658]: const generics are unstable
LL | fn foo<const X: ()>() {}
| ^
|
= note: for more information, see tracking issue #44580
= note: for more information, see https://github.com/rust-lang/rust/issues/44580
= help: add #![feature(const_generics)] to the crate attributes to enable
error[E0658]: const generics are unstable
@ -13,7 +13,7 @@ error[E0658]: const generics are unstable
LL | struct Foo<const X: usize>([(); X]);
| ^
|
= note: for more information, see tracking issue #44580
= note: for more information, see https://github.com/rust-lang/rust/issues/44580
= help: add #![feature(const_generics)] to the crate attributes to enable
error: aborting due to 2 previous errors

View file

@ -4,7 +4,7 @@ error[E0658]: The use of std::mem::transmute() is gated in constants
LL | const TRANSMUTED_U32: u32 = unsafe { mem::transmute(Foo(3)) };
| ^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #53605
= note: for more information, see https://github.com/rust-lang/rust/issues/53605
= help: add #![feature(const_transmute)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: `crate` visibility modifier is experimental
LL | crate struct Bender {
| ^^^^^
|
= note: for more information, see tracking issue #53120
= note: for more information, see https://github.com/rust-lang/rust/issues/53120
= help: add #![feature(crate_visibility_modifier)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and
LL | #[fake_attr]
| ^^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
@ -13,7 +13,7 @@ error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and
LL | #[fake_attr(100)]
| ^^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
@ -22,7 +22,7 @@ error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and
LL | #[fake_attr(1, 2, 3)]
| ^^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
@ -31,7 +31,7 @@ error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and
LL | #[fake_attr("hello")]
| ^^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
@ -40,7 +40,7 @@ error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and
LL | #[fake_attr(name = "hello")]
| ^^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
@ -49,7 +49,7 @@ error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and
LL | #[fake_attr(1, "hi", key = 12, true, false)]
| ^^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
@ -58,7 +58,7 @@ error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and
LL | #[fake_attr(key = "hello", val = 10)]
| ^^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
@ -67,7 +67,7 @@ error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and
LL | #[fake_attr(key("hello"), val(10))]
| ^^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
@ -76,7 +76,7 @@ error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and
LL | #[fake_attr(enabled = true, disabled = false)]
| ^^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
@ -85,7 +85,7 @@ error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and
LL | #[fake_attr(true)]
| ^^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
@ -94,7 +94,7 @@ error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and
LL | #[fake_attr(pi = 3.14159)]
| ^^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
@ -103,7 +103,7 @@ error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and
LL | #[fake_attr(b"hi")]
| ^^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `fake_doc` is currently unknown to the compiler and may have meaning added to it in the future
@ -112,7 +112,7 @@ error[E0658]: The attribute `fake_doc` is currently unknown to the compiler and
LL | #[fake_doc(r"doc")]
| ^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error: aborting due to 13 previous errors

View file

@ -4,7 +4,7 @@ error[E0658]: The attribute `lt_struct` is currently unknown to the compiler and
LL | struct StLt<#[lt_struct] 'a>(&'a u32);
| ^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `ty_struct` is currently unknown to the compiler and may have meaning added to it in the future
@ -13,7 +13,7 @@ error[E0658]: The attribute `ty_struct` is currently unknown to the compiler and
LL | struct StTy<#[ty_struct] I>(I);
| ^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `lt_enum` is currently unknown to the compiler and may have meaning added to it in the future
@ -22,7 +22,7 @@ error[E0658]: The attribute `lt_enum` is currently unknown to the compiler and m
LL | enum EnLt<#[lt_enum] 'b> { A(&'b u32), B }
| ^^^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `ty_enum` is currently unknown to the compiler and may have meaning added to it in the future
@ -31,7 +31,7 @@ error[E0658]: The attribute `ty_enum` is currently unknown to the compiler and m
LL | enum EnTy<#[ty_enum] J> { A(J), B }
| ^^^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `lt_trait` is currently unknown to the compiler and may have meaning added to it in the future
@ -40,7 +40,7 @@ error[E0658]: The attribute `lt_trait` is currently unknown to the compiler and
LL | trait TrLt<#[lt_trait] 'c> { fn foo(&self, _: &'c [u32]) -> &'c u32; }
| ^^^^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `ty_trait` is currently unknown to the compiler and may have meaning added to it in the future
@ -49,7 +49,7 @@ error[E0658]: The attribute `ty_trait` is currently unknown to the compiler and
LL | trait TrTy<#[ty_trait] K> { fn foo(&self, _: K); }
| ^^^^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `lt_type` is currently unknown to the compiler and may have meaning added to it in the future
@ -58,7 +58,7 @@ error[E0658]: The attribute `lt_type` is currently unknown to the compiler and m
LL | type TyLt<#[lt_type] 'd> = &'d u32;
| ^^^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `ty_type` is currently unknown to the compiler and may have meaning added to it in the future
@ -67,7 +67,7 @@ error[E0658]: The attribute `ty_type` is currently unknown to the compiler and m
LL | type TyTy<#[ty_type] L> = (L, );
| ^^^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `lt_inherent` is currently unknown to the compiler and may have meaning added to it in the future
@ -76,7 +76,7 @@ error[E0658]: The attribute `lt_inherent` is currently unknown to the compiler a
LL | impl<#[lt_inherent] 'e> StLt<'e> { }
| ^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `ty_inherent` is currently unknown to the compiler and may have meaning added to it in the future
@ -85,7 +85,7 @@ error[E0658]: The attribute `ty_inherent` is currently unknown to the compiler a
LL | impl<#[ty_inherent] M> StTy<M> { }
| ^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `lt_impl_for` is currently unknown to the compiler and may have meaning added to it in the future
@ -94,7 +94,7 @@ error[E0658]: The attribute `lt_impl_for` is currently unknown to the compiler a
LL | impl<#[lt_impl_for] 'f> TrLt<'f> for StLt<'f> {
| ^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `ty_impl_for` is currently unknown to the compiler and may have meaning added to it in the future
@ -103,7 +103,7 @@ error[E0658]: The attribute `ty_impl_for` is currently unknown to the compiler a
LL | impl<#[ty_impl_for] N> TrTy<N> for StTy<N> {
| ^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `lt_fn` is currently unknown to the compiler and may have meaning added to it in the future
@ -112,7 +112,7 @@ error[E0658]: The attribute `lt_fn` is currently unknown to the compiler and may
LL | fn f_lt<#[lt_fn] 'g>(_: &'g [u32]) -> &'g u32 { loop { } }
| ^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `ty_fn` is currently unknown to the compiler and may have meaning added to it in the future
@ -121,7 +121,7 @@ error[E0658]: The attribute `ty_fn` is currently unknown to the compiler and may
LL | fn f_ty<#[ty_fn] O>(_: O) { }
| ^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `lt_meth` is currently unknown to the compiler and may have meaning added to it in the future
@ -130,7 +130,7 @@ error[E0658]: The attribute `lt_meth` is currently unknown to the compiler and m
LL | fn m_lt<#[lt_meth] 'h>(_: &'h [u32]) -> &'h u32 { loop { } }
| ^^^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `ty_meth` is currently unknown to the compiler and may have meaning added to it in the future
@ -139,7 +139,7 @@ error[E0658]: The attribute `ty_meth` is currently unknown to the compiler and m
LL | fn m_ty<#[ty_meth] P>(_: P) { }
| ^^^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error[E0658]: The attribute `lt_hof` is currently unknown to the compiler and may have meaning added to it in the future
@ -148,7 +148,7 @@ error[E0658]: The attribute `lt_hof` is currently unknown to the compiler and ma
LL | where Q: for <#[lt_hof] 'i> Fn(&'i [u32]) -> &'i u32
| ^^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error: aborting due to 17 previous errors

View file

@ -4,7 +4,7 @@ error[E0658]: custom test frameworks are an unstable feature
LL | #![test_runner(main)]
| ^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #50297
= note: for more information, see https://github.com/rust-lang/rust/issues/50297
= help: add #![feature(custom_test_frameworks)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: `macro` is experimental
LL | macro m() {}
| ^^^^^^^^^^^^
|
= note: for more information, see tracking issue #39412
= note: for more information, see https://github.com/rust-lang/rust/issues/39412
= help: add #![feature(decl_macro)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: #[doc(alias = "...")] is experimental
LL | #[doc(alias = "foo")]
| ^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #50146
= note: for more information, see https://github.com/rust-lang/rust/issues/50146
= help: add #![feature(doc_alias)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: `cfg(rustdoc)` is experimental and subject to change
LL | #[cfg(rustdoc)]
| ^^^^^^^
|
= note: for more information, see tracking issue #43781
= note: for more information, see https://github.com/rust-lang/rust/issues/43781
= help: add #![feature(doc_cfg)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: #[doc(cfg(...))] is experimental
LL | #[doc(cfg(unix))]
| ^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #43781
= note: for more information, see https://github.com/rust-lang/rust/issues/43781
= help: add #![feature(doc_cfg)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: #[doc(keyword = "...")] is experimental
LL | #[doc(keyword = "match")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #51315
= note: for more information, see https://github.com/rust-lang/rust/issues/51315
= help: add #![feature(doc_keyword)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: #[doc(masked)] is experimental
LL | #[doc(masked)]
| ^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #44027
= note: for more information, see https://github.com/rust-lang/rust/issues/44027
= help: add #![feature(doc_masked)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: #[doc(spotlight)] is experimental
LL | #[doc(spotlight)]
| ^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #45040
= note: for more information, see https://github.com/rust-lang/rust/issues/45040
= help: add #![feature(doc_spotlight)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: unsafe_destructor_blind_to_params has been replaced by may_dangle
LL | #[unsafe_destructor_blind_to_params] // This is the UGEH attribute
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #28498
= note: for more information, see https://github.com/rust-lang/rust/issues/28498
= help: add #![feature(dropck_parametricity)] to the crate attributes to enable
warning: use of deprecated attribute `dropck_parametricity`: unsafe_destructor_blind_to_params has been replaced by may_dangle and will be removed in the future. See https://github.com/rust-lang/rust/issues/34761

View file

@ -4,7 +4,7 @@ error[E0658]: exclusive range pattern syntax is experimental
LL | 0 .. 3 => {}
| ^^^^^^
|
= note: for more information, see tracking issue #37854
= note: for more information, see https://github.com/rust-lang/rust/issues/37854
= help: add #![feature(exclusive_range_pattern)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: existential types are unstable
LL | existential type Foo: std::fmt::Debug;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #34511
= note: for more information, see https://github.com/rust-lang/rust/issues/34511
= help: add #![feature(existential_type)] to the crate attributes to enable
error[E0658]: existential types are unstable
@ -13,7 +13,7 @@ error[E0658]: existential types are unstable
LL | existential type Baa: std::fmt::Debug;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #34511
= note: for more information, see https://github.com/rust-lang/rust/issues/34511
= help: add #![feature(existential_type)] to the crate attributes to enable
error: aborting due to 2 previous errors

View file

@ -4,7 +4,7 @@ error[E0658]: extern types are experimental
LL | type T;
| ^^^^^^^
|
= note: for more information, see tracking issue #43467
= note: for more information, see https://github.com/rust-lang/rust/issues/43467
= help: add #![feature(extern_types)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: #[doc(include = "...")] is experimental
LL | #[doc(include="asdf.md")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #44732
= note: for more information, see https://github.com/rust-lang/rust/issues/44732
= help: add #![feature(external_doc)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: the `#[ffi_returns_twice]` attribute is an experimental feature
LL | #[ffi_returns_twice]
| ^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #58314
= note: for more information, see https://github.com/rust-lang/rust/issues/58314
= help: add #![feature(ffi_returns_twice)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: the `#[fundamental]` attribute is an experimental feature
LL | #[fundamental]
| ^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29635
= note: for more information, see https://github.com/rust-lang/rust/issues/29635
= help: add #![feature(fundamental)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: yield syntax is experimental
LL | yield true;
| ^^^^^^^^^^
|
= note: for more information, see tracking issue #43122
= note: for more information, see https://github.com/rust-lang/rust/issues/43122
= help: add #![feature(generators)] to the crate attributes to enable
error[E0627]: yield statement outside of generator literal

View file

@ -4,7 +4,7 @@ error[E0658]: generic associated types are unstable
LL | type Pointer<T>: Deref<Target = T>;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #44265
= note: for more information, see https://github.com/rust-lang/rust/issues/44265
= help: add #![feature(generic_associated_types)] to the crate attributes to enable
error[E0658]: generic associated types are unstable
@ -13,7 +13,7 @@ error[E0658]: generic associated types are unstable
LL | type Pointer2<T>: Deref<Target = T> where T: Clone, U: Clone;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #44265
= note: for more information, see https://github.com/rust-lang/rust/issues/44265
= help: add #![feature(generic_associated_types)] to the crate attributes to enable
error[E0658]: where clauses on associated types are unstable
@ -22,7 +22,7 @@ error[E0658]: where clauses on associated types are unstable
LL | type Pointer2<T>: Deref<Target = T> where T: Clone, U: Clone;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #44265
= note: for more information, see https://github.com/rust-lang/rust/issues/44265
= help: add #![feature(generic_associated_types)] to the crate attributes to enable
error[E0658]: generic associated types are unstable
@ -31,7 +31,7 @@ error[E0658]: generic associated types are unstable
LL | type Pointer<Usize> = Box<Usize>;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #44265
= note: for more information, see https://github.com/rust-lang/rust/issues/44265
= help: add #![feature(generic_associated_types)] to the crate attributes to enable
error[E0658]: generic associated types are unstable
@ -40,7 +40,7 @@ error[E0658]: generic associated types are unstable
LL | type Pointer2<U32> = Box<U32>;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #44265
= note: for more information, see https://github.com/rust-lang/rust/issues/44265
= help: add #![feature(generic_associated_types)] to the crate attributes to enable
error[E0658]: where clauses on associated types are unstable
@ -49,7 +49,7 @@ error[E0658]: where clauses on associated types are unstable
LL | type Assoc where Self: Sized;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #44265
= note: for more information, see https://github.com/rust-lang/rust/issues/44265
= help: add #![feature(generic_associated_types)] to the crate attributes to enable
error[E0658]: where clauses on associated types are unstable
@ -58,7 +58,7 @@ error[E0658]: where clauses on associated types are unstable
LL | type Assoc where Self: Sized = Foo;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #44265
= note: for more information, see https://github.com/rust-lang/rust/issues/44265
= help: add #![feature(generic_associated_types)] to the crate attributes to enable
error: aborting due to 7 previous errors

View file

@ -4,7 +4,7 @@ error[E0658]: `global_asm!` is not stable enough for use and is subject to chang
LL | global_asm!("");
| ^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #35119
= note: for more information, see https://github.com/rust-lang/rust/issues/35119
= help: add #![feature(global_asm)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: use of unstable library feature 'is_sorted': new API
LL | assert!([1, 2, 2, 9].iter().is_sorted());
| ^^^^^^^^^
|
= note: for more information, see tracking issue #53485
= note: for more information, see https://github.com/rust-lang/rust/issues/53485
= help: add #![feature(is_sorted)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'is_sorted': new API
@ -13,7 +13,7 @@ error[E0658]: use of unstable library feature 'is_sorted': new API
LL | assert!(![-2i32, -1, 0, 3].iter().is_sorted_by_key(|n| n.abs()));
| ^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #53485
= note: for more information, see https://github.com/rust-lang/rust/issues/53485
= help: add #![feature(is_sorted)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'is_sorted': new API
@ -22,7 +22,7 @@ error[E0658]: use of unstable library feature 'is_sorted': new API
LL | assert!([1, 2, 2, 9].is_sorted());
| ^^^^^^^^^
|
= note: for more information, see tracking issue #53485
= note: for more information, see https://github.com/rust-lang/rust/issues/53485
= help: add #![feature(is_sorted)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'is_sorted': new API
@ -31,7 +31,7 @@ error[E0658]: use of unstable library feature 'is_sorted': new API
LL | assert!(![-2i32, -1, 0, 3].is_sorted_by_key(|n| n.abs()));
| ^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #53485
= note: for more information, see https://github.com/rust-lang/rust/issues/53485
= help: add #![feature(is_sorted)] to the crate attributes to enable
error: aborting due to 4 previous errors

View file

@ -4,7 +4,7 @@ error[E0658]: labels on blocks are unstable
LL | 'a: {
| ^^
|
= note: for more information, see tracking issue #48594
= note: for more information, see https://github.com/rust-lang/rust/issues/48594
= help: add #![feature(label_break_value)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: the `link_args` attribute is experimental and not portable across
LL | #[link_args = "-l expected_use_case"]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29596
= note: for more information, see https://github.com/rust-lang/rust/issues/29596
= help: add #![feature(link_args)] to the crate attributes to enable
error[E0658]: the `link_args` attribute is experimental and not portable across platforms, it is recommended to use `#[link(name = "foo")] instead
@ -13,7 +13,7 @@ error[E0658]: the `link_args` attribute is experimental and not portable across
LL | #[link_args = "-l unexected_use_on_non_extern_item"]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29596
= note: for more information, see https://github.com/rust-lang/rust/issues/29596
= help: add #![feature(link_args)] to the crate attributes to enable
error[E0658]: the `link_args` attribute is experimental and not portable across platforms, it is recommended to use `#[link(name = "foo")] instead
@ -22,7 +22,7 @@ error[E0658]: the `link_args` attribute is experimental and not portable across
LL | #![link_args = "-l unexpected_use_as_inner_attr_on_mod"]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29596
= note: for more information, see https://github.com/rust-lang/rust/issues/29596
= help: add #![feature(link_args)] to the crate attributes to enable
error: aborting due to 3 previous errors

View file

@ -4,7 +4,7 @@ error[E0658]: is feature gated
LL | #[link(name = "foo", cfg(foo))]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #37406
= note: for more information, see https://github.com/rust-lang/rust/issues/37406
= help: add #![feature(link_cfg)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: linking to LLVM intrinsics is experimental
LL | fn sqrt(x: f32) -> f32;
| ^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29602
= note: for more information, see https://github.com/rust-lang/rust/issues/29602
= help: add #![feature(link_llvm_intrinsics)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: the `linkage` attribute is experimental and not portable across pl
LL | #[linkage = "extern_weak"] static foo: isize;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29603
= note: for more information, see https://github.com/rust-lang/rust/issues/29603
= help: add #![feature(linkage)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: lint reasons are experimental
LL | #![warn(nonstandard_style, reason = "the standard should be respected")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #54503
= note: for more information, see https://github.com/rust-lang/rust/issues/54503
= help: add #![feature(lint_reasons)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: `log_syntax!` is not stable enough for use and is subject to chang
LL | log_syntax!()
| ^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29598
= note: for more information, see https://github.com/rust-lang/rust/issues/29598
= help: add #![feature(log_syntax)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: `log_syntax!` is not stable enough for use and is subject to chang
LL | println!("{:?}", log_syntax!());
| ^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29598
= note: for more information, see https://github.com/rust-lang/rust/issues/29598
= help: add #![feature(log_syntax)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: macro invocations in `extern {}` blocks are experimental
LL | returns_isize!(rust_get_test_int);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #49476
= note: for more information, see https://github.com/rust-lang/rust/issues/49476
= help: add #![feature(macros_in_extern)] to the crate attributes to enable
error[E0658]: macro invocations in `extern {}` blocks are experimental
@ -13,7 +13,7 @@ error[E0658]: macro invocations in `extern {}` blocks are experimental
LL | takes_u32_returns_u32!(rust_dbg_extern_identity_u32);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #49476
= note: for more information, see https://github.com/rust-lang/rust/issues/49476
= help: add #![feature(macros_in_extern)] to the crate attributes to enable
error[E0658]: macro invocations in `extern {}` blocks are experimental
@ -22,7 +22,7 @@ error[E0658]: macro invocations in `extern {}` blocks are experimental
LL | emits_nothing!();
| ^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #49476
= note: for more information, see https://github.com/rust-lang/rust/issues/49476
= help: add #![feature(macros_in_extern)] to the crate attributes to enable
error: aborting due to 3 previous errors

View file

@ -4,7 +4,7 @@ error[E0658]: declaration of a nonstandard #[main] function may change over time
LL | fn foo() {}
| ^^^^^^^^^^^
|
= note: for more information, see tracking issue #29634
= note: for more information, see https://github.com/rust-lang/rust/issues/29634
= help: add #![feature(main)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: marker traits is an experimental feature
LL | #[marker] trait ExplicitMarker {}
| ^^^^^^^^^
|
= note: for more information, see tracking issue #29864
= note: for more information, see https://github.com/rust-lang/rust/issues/29864
= help: add #![feature(marker_trait_attr)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: may_dangle has unstable semantics and may be removed in the future
LL | unsafe impl<#[may_dangle] A> Drop for Pt<A> {
| ^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #34761
= note: for more information, see https://github.com/rust-lang/rust/issues/34761
= help: add #![feature(dropck_eyepatch)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -22,7 +22,7 @@ error[E0658]: const fn is unstable
LL | const fn foo() -> u32;
| ^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #57563
= note: for more information, see https://github.com/rust-lang/rust/issues/57563
= help: add #![feature(const_fn)] to the crate attributes to enable
error[E0658]: const fn is unstable
@ -31,7 +31,7 @@ error[E0658]: const fn is unstable
LL | const fn bar() -> u32 { 0 }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #57563
= note: for more information, see https://github.com/rust-lang/rust/issues/57563
= help: add #![feature(const_fn)] to the crate attributes to enable
error: aborting due to 5 previous errors

View file

@ -4,7 +4,7 @@ error[E0658]: the `#[naked]` attribute is an experimental feature
LL | #[naked]
| ^^^^^^^^
|
= note: for more information, see tracking issue #32408
= note: for more information, see https://github.com/rust-lang/rust/issues/32408
= help: add #![feature(naked_functions)] to the crate attributes to enable
error[E0658]: the `#[naked]` attribute is an experimental feature
@ -13,7 +13,7 @@ error[E0658]: the `#[naked]` attribute is an experimental feature
LL | #[naked]
| ^^^^^^^^
|
= note: for more information, see tracking issue #32408
= note: for more information, see https://github.com/rust-lang/rust/issues/32408
= help: add #![feature(naked_functions)] to the crate attributes to enable
error: aborting due to 2 previous errors

View file

@ -4,7 +4,7 @@ error[E0658]: The `!` type is experimental
LL | type Ma = (u32, !, i32);
| ^
|
= note: for more information, see tracking issue #35121
= note: for more information, see https://github.com/rust-lang/rust/issues/35121
= help: add #![feature(never_type)] to the crate attributes to enable
error[E0658]: The `!` type is experimental
@ -13,7 +13,7 @@ error[E0658]: The `!` type is experimental
LL | type Meeshka = Vec<!>;
| ^
|
= note: for more information, see tracking issue #35121
= note: for more information, see https://github.com/rust-lang/rust/issues/35121
= help: add #![feature(never_type)] to the crate attributes to enable
error[E0658]: The `!` type is experimental
@ -22,7 +22,7 @@ error[E0658]: The `!` type is experimental
LL | type Mow = &'static fn(!) -> !;
| ^
|
= note: for more information, see tracking issue #35121
= note: for more information, see https://github.com/rust-lang/rust/issues/35121
= help: add #![feature(never_type)] to the crate attributes to enable
error[E0658]: The `!` type is experimental
@ -31,7 +31,7 @@ error[E0658]: The `!` type is experimental
LL | type Skwoz = &'static mut !;
| ^
|
= note: for more information, see tracking issue #35121
= note: for more information, see https://github.com/rust-lang/rust/issues/35121
= help: add #![feature(never_type)] to the crate attributes to enable
error[E0658]: The `!` type is experimental
@ -40,7 +40,7 @@ error[E0658]: The `!` type is experimental
LL | type Wub = !;
| ^
|
= note: for more information, see tracking issue #35121
= note: for more information, see https://github.com/rust-lang/rust/issues/35121
= help: add #![feature(never_type)] to the crate attributes to enable
error: aborting due to 5 previous errors

View file

@ -4,7 +4,7 @@ error[E0658]: the `#[no_debug]` attribute was an experimental feature that has b
LL | #[no_debug]
| ^^^^^^^^^^^
|
= note: for more information, see tracking issue #29721
= note: for more information, see https://github.com/rust-lang/rust/issues/29721
= help: add #![feature(no_debug)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: no_core is experimental
LL | #![no_core]
| ^^^^^^^^^^^
|
= note: for more information, see tracking issue #29639
= note: for more information, see https://github.com/rust-lang/rust/issues/29639
= help: add #![feature(no_core)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: non-ascii idents are not fully supported
LL | extern crate core as bäz;
| ^^^
|
= note: for more information, see tracking issue #55467
= note: for more information, see https://github.com/rust-lang/rust/issues/55467
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
error[E0658]: non-ascii idents are not fully supported
@ -13,7 +13,7 @@ error[E0658]: non-ascii idents are not fully supported
LL | use föö::bar;
| ^^^
|
= note: for more information, see tracking issue #55467
= note: for more information, see https://github.com/rust-lang/rust/issues/55467
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
error[E0658]: non-ascii idents are not fully supported
@ -22,7 +22,7 @@ error[E0658]: non-ascii idents are not fully supported
LL | mod föö {
| ^^^
|
= note: for more information, see tracking issue #55467
= note: for more information, see https://github.com/rust-lang/rust/issues/55467
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
error[E0658]: non-ascii idents are not fully supported
@ -31,7 +31,7 @@ error[E0658]: non-ascii idents are not fully supported
LL | fn bär(
| ^^^
|
= note: for more information, see tracking issue #55467
= note: for more information, see https://github.com/rust-lang/rust/issues/55467
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
error[E0658]: non-ascii idents are not fully supported
@ -40,7 +40,7 @@ error[E0658]: non-ascii idents are not fully supported
LL | bäz: isize
| ^^^
|
= note: for more information, see tracking issue #55467
= note: for more information, see https://github.com/rust-lang/rust/issues/55467
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
error[E0658]: non-ascii idents are not fully supported
@ -49,7 +49,7 @@ error[E0658]: non-ascii idents are not fully supported
LL | let _ö: isize;
| ^^
|
= note: for more information, see tracking issue #55467
= note: for more information, see https://github.com/rust-lang/rust/issues/55467
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
error[E0658]: non-ascii idents are not fully supported
@ -58,7 +58,7 @@ error[E0658]: non-ascii idents are not fully supported
LL | (_ä, _) => {}
| ^^
|
= note: for more information, see tracking issue #55467
= note: for more information, see https://github.com/rust-lang/rust/issues/55467
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
error[E0658]: non-ascii idents are not fully supported
@ -67,7 +67,7 @@ error[E0658]: non-ascii idents are not fully supported
LL | struct Föö {
| ^^^
|
= note: for more information, see tracking issue #55467
= note: for more information, see https://github.com/rust-lang/rust/issues/55467
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
error[E0658]: non-ascii idents are not fully supported
@ -76,7 +76,7 @@ error[E0658]: non-ascii idents are not fully supported
LL | föö: isize
| ^^^
|
= note: for more information, see tracking issue #55467
= note: for more information, see https://github.com/rust-lang/rust/issues/55467
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
error[E0658]: non-ascii idents are not fully supported
@ -85,7 +85,7 @@ error[E0658]: non-ascii idents are not fully supported
LL | enum Bär {
| ^^^
|
= note: for more information, see tracking issue #55467
= note: for more information, see https://github.com/rust-lang/rust/issues/55467
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
error[E0658]: non-ascii idents are not fully supported
@ -94,7 +94,7 @@ error[E0658]: non-ascii idents are not fully supported
LL | Bäz {
| ^^^
|
= note: for more information, see tracking issue #55467
= note: for more information, see https://github.com/rust-lang/rust/issues/55467
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
error[E0658]: non-ascii idents are not fully supported
@ -103,7 +103,7 @@ error[E0658]: non-ascii idents are not fully supported
LL | qüx: isize
| ^^^
|
= note: for more information, see tracking issue #55467
= note: for more information, see https://github.com/rust-lang/rust/issues/55467
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
error[E0658]: non-ascii idents are not fully supported
@ -112,7 +112,7 @@ error[E0658]: non-ascii idents are not fully supported
LL | fn qüx();
| ^^^
|
= note: for more information, see tracking issue #55467
= note: for more information, see https://github.com/rust-lang/rust/issues/55467
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
error: aborting due to 13 previous errors

View file

@ -4,7 +4,7 @@ error[E0658]: non exhaustive is an experimental feature
LL | #[non_exhaustive]
| ^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #44109
= note: for more information, see https://github.com/rust-lang/rust/issues/44109
= help: add #![feature(non_exhaustive)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: the `#[rustc_on_unimplemented]` attribute is an experimental featu
LL | #[rustc_on_unimplemented = "test error `{Self}` with `{Bar}`"]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29628
= note: for more information, see https://github.com/rust-lang/rust/issues/29628
= help: add #![feature(on_unimplemented)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: auto traits are experimental and possibly buggy
LL | auto trait AutoDummyTrait {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #13231
= note: for more information, see https://github.com/rust-lang/rust/issues/13231
= help: add #![feature(optin_builtin_traits)] to the crate attributes to enable
error[E0658]: negative trait bounds are not yet fully implemented; use marker types for now
@ -13,7 +13,7 @@ error[E0658]: negative trait bounds are not yet fully implemented; use marker ty
LL | impl !AutoDummyTrait for DummyStruct {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #13231
= note: for more information, see https://github.com/rust-lang/rust/issues/13231
= help: add #![feature(optin_builtin_traits)] to the crate attributes to enable
error: aborting due to 2 previous errors

View file

@ -4,7 +4,7 @@ error[E0658]: compiler plugins are experimental and possibly buggy
LL | #![plugin(foo)]
| ^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29597
= note: for more information, see https://github.com/rust-lang/rust/issues/29597
= help: add #![feature(plugin)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: compiler plugins are experimental and possibly buggy
LL | pub fn registrar() {}
| ^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29597
= note: for more information, see https://github.com/rust-lang/rust/issues/29597
= help: add #![feature(plugin_registrar)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: SIMD types are experimental and possibly buggy
LL | #[repr(simd)]
| ^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #27731
= note: for more information, see https://github.com/rust-lang/rust/issues/27731
= help: add #![feature(repr_simd)] to the crate attributes to enable
error[E0658]: SIMD types are experimental and possibly buggy
@ -13,7 +13,7 @@ error[E0658]: SIMD types are experimental and possibly buggy
LL | #[repr(simd)]
| ^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #27731
= note: for more information, see https://github.com/rust-lang/rust/issues/27731
= help: add #![feature(repr_simd)] to the crate attributes to enable
warning[E0566]: conflicting representation hints

View file

@ -6,7 +6,7 @@ LL | | A(u64)
LL | | }
| |_^
|
= note: for more information, see tracking issue #35118
= note: for more information, see https://github.com/rust-lang/rust/issues/35118
= help: add #![feature(repr128)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: `#[repr(align(x))]` on enums is experimental
LL | #[repr(align(8))]
| ^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #57996
= note: for more information, see https://github.com/rust-lang/rust/issues/57996
= help: add #![feature(repr_align_enum)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: the `#[rustc_variance]` attribute is just used for rustc unit test
LL | #[rustc_variance]
| ^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(rustc_attrs)] to the crate attributes to enable
error[E0658]: the `#[rustc_error]` attribute is just used for rustc unit tests and will never be stable
@ -13,7 +13,7 @@ error[E0658]: the `#[rustc_error]` attribute is just used for rustc unit tests a
LL | #[rustc_error]
| ^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(rustc_attrs)] to the crate attributes to enable
error: aborting due to 2 previous errors

View file

@ -4,7 +4,7 @@ error[E0658]: unless otherwise specified, attributes with the prefix `rustc_` ar
LL | #[rustc_foo]
| ^^^^^^^^^
|
= note: for more information, see tracking issue #29642
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add #![feature(rustc_attrs)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: SIMD types are experimental and possibly buggy
LL | #[repr(simd)]
| ^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #27731
= note: for more information, see https://github.com/rust-lang/rust/issues/27731
= help: add #![feature(repr_simd)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: syntax for subslices in slice patterns is not yet stabilized
LL | [1, 2, ..] => {}
| ^^
|
= note: for more information, see tracking issue #23121
= note: for more information, see https://github.com/rust-lang/rust/issues/23121
= help: add #![feature(slice_patterns)] to the crate attributes to enable
error[E0658]: syntax for subslices in slice patterns is not yet stabilized
@ -13,7 +13,7 @@ error[E0658]: syntax for subslices in slice patterns is not yet stabilized
LL | [1, .., 5] => {}
| ^^
|
= note: for more information, see tracking issue #23121
= note: for more information, see https://github.com/rust-lang/rust/issues/23121
= help: add #![feature(slice_patterns)] to the crate attributes to enable
error[E0658]: syntax for subslices in slice patterns is not yet stabilized
@ -22,7 +22,7 @@ error[E0658]: syntax for subslices in slice patterns is not yet stabilized
LL | [.., 4, 5] => {}
| ^^
|
= note: for more information, see tracking issue #23121
= note: for more information, see https://github.com/rust-lang/rust/issues/23121
= help: add #![feature(slice_patterns)] to the crate attributes to enable
error[E0658]: syntax for subslices in slice patterns is not yet stabilized
@ -31,7 +31,7 @@ error[E0658]: syntax for subslices in slice patterns is not yet stabilized
LL | [ xs.., 4, 5 ] => {}
| ^^
|
= note: for more information, see tracking issue #23121
= note: for more information, see https://github.com/rust-lang/rust/issues/23121
= help: add #![feature(slice_patterns)] to the crate attributes to enable
error[E0658]: syntax for subslices in slice patterns is not yet stabilized
@ -40,7 +40,7 @@ error[E0658]: syntax for subslices in slice patterns is not yet stabilized
LL | [ 1, xs.., 5 ] => {}
| ^^
|
= note: for more information, see tracking issue #23121
= note: for more information, see https://github.com/rust-lang/rust/issues/23121
= help: add #![feature(slice_patterns)] to the crate attributes to enable
error[E0658]: syntax for subslices in slice patterns is not yet stabilized
@ -49,7 +49,7 @@ error[E0658]: syntax for subslices in slice patterns is not yet stabilized
LL | [ 1, 2, xs.. ] => {}
| ^^
|
= note: for more information, see tracking issue #23121
= note: for more information, see https://github.com/rust-lang/rust/issues/23121
= help: add #![feature(slice_patterns)] to the crate attributes to enable
error: aborting due to 6 previous errors

View file

@ -4,7 +4,7 @@ error[E0658]: a #[start] function is an experimental feature whose signature may
LL | fn foo(_: isize, _: *const *const u8) -> isize { 0 }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29633
= note: for more information, see https://github.com/rust-lang/rust/issues/29633
= help: add #![feature(start)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: kind="static-nobundle" is feature gated
LL | #[link(name="foo", kind="static-nobundle")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #37403
= note: for more information, see https://github.com/rust-lang/rust/issues/37403
= help: add #![feature(static_nobundle)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: attributes on expressions are experimental
LL | const X: i32 = #[allow(dead_code)] 8;
| ^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #15701
= note: for more information, see https://github.com/rust-lang/rust/issues/15701
= help: add #![feature(stmt_expr_attributes)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: `#[thread_local]` is an experimental feature, and does not current
LL | #[thread_local]
| ^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29594
= note: for more information, see https://github.com/rust-lang/rust/issues/29594
= help: add #![feature(thread_local)] to the crate attributes to enable
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: `trace_macros` is not stable enough for use and is subject to chan
LL | trace_macros!(true);
| ^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see tracking issue #29598
= note: for more information, see https://github.com/rust-lang/rust/issues/29598
= help: add #![feature(trace_macros)] to the crate attributes to enable
error: aborting due to previous error

Some files were not shown because too many files have changed in this diff Show more