Ensure every unstable feature has a tracking issue.
This commit is contained in:
parent
1a6bda68cd
commit
509f414b4f
11 changed files with 67 additions and 42 deletions
|
|
@ -38,7 +38,7 @@ LL | extern "msp430-interrupt" fn f5() {} //~ ERROR msp430-interrupt ABI is expe
|
|||
|
|
||||
= help: add #![feature(abi_msp430_interrupt)] to the crate attributes to enable
|
||||
|
||||
error[E0658]: PTX ABIs are experimental and subject to change
|
||||
error[E0658]: PTX ABIs are experimental and subject to change (see issue #38788)
|
||||
--> $DIR/feature-gate-abi.rs:24:1
|
||||
|
|
||||
LL | extern "ptx-kernel" fn f6() {} //~ ERROR PTX ABIs are experimental and subject to change
|
||||
|
|
@ -102,7 +102,7 @@ LL | extern "msp430-interrupt" fn m5(); //~ ERROR msp430-interrupt ABI is ex
|
|||
|
|
||||
= help: add #![feature(abi_msp430_interrupt)] to the crate attributes to enable
|
||||
|
||||
error[E0658]: PTX ABIs are experimental and subject to change
|
||||
error[E0658]: PTX ABIs are experimental and subject to change (see issue #38788)
|
||||
--> $DIR/feature-gate-abi.rs:35:5
|
||||
|
|
||||
LL | extern "ptx-kernel" fn m6(); //~ ERROR PTX ABIs are experimental and subject to change
|
||||
|
|
@ -166,7 +166,7 @@ LL | extern "msp430-interrupt" fn dm5() {} //~ ERROR msp430-interrupt ABI is
|
|||
|
|
||||
= help: add #![feature(abi_msp430_interrupt)] to the crate attributes to enable
|
||||
|
||||
error[E0658]: PTX ABIs are experimental and subject to change
|
||||
error[E0658]: PTX ABIs are experimental and subject to change (see issue #38788)
|
||||
--> $DIR/feature-gate-abi.rs:44:5
|
||||
|
|
||||
LL | extern "ptx-kernel" fn dm6() {} //~ ERROR PTX ABIs are experimental and subject to change
|
||||
|
|
@ -230,7 +230,7 @@ LL | extern "msp430-interrupt" fn m5() {} //~ ERROR msp430-interrupt ABI is
|
|||
|
|
||||
= help: add #![feature(abi_msp430_interrupt)] to the crate attributes to enable
|
||||
|
||||
error[E0658]: PTX ABIs are experimental and subject to change
|
||||
error[E0658]: PTX ABIs are experimental and subject to change (see issue #38788)
|
||||
--> $DIR/feature-gate-abi.rs:58:5
|
||||
|
|
||||
LL | extern "ptx-kernel" fn m6() {} //~ ERROR PTX ABIs are experimental and subject to change
|
||||
|
|
@ -294,7 +294,7 @@ LL | extern "msp430-interrupt" fn im5() {} //~ ERROR msp430-interrupt ABI is
|
|||
|
|
||||
= help: add #![feature(abi_msp430_interrupt)] to the crate attributes to enable
|
||||
|
||||
error[E0658]: PTX ABIs are experimental and subject to change
|
||||
error[E0658]: PTX ABIs are experimental and subject to change (see issue #38788)
|
||||
--> $DIR/feature-gate-abi.rs:70:5
|
||||
|
|
||||
LL | extern "ptx-kernel" fn im6() {} //~ ERROR PTX ABIs are experimental and subject to change
|
||||
|
|
@ -358,7 +358,7 @@ LL | type A5 = extern "msp430-interrupt" fn(); //~ ERROR msp430-interrupt ABI is
|
|||
|
|
||||
= help: add #![feature(abi_msp430_interrupt)] to the crate attributes to enable
|
||||
|
||||
error[E0658]: PTX ABIs are experimental and subject to change
|
||||
error[E0658]: PTX ABIs are experimental and subject to change (see issue #38788)
|
||||
--> $DIR/feature-gate-abi.rs:81:11
|
||||
|
|
||||
LL | type A6 = extern "ptx-kernel" fn (); //~ ERROR PTX ABIs are experimental and subject to change
|
||||
|
|
@ -422,7 +422,7 @@ LL | extern "msp430-interrupt" {} //~ ERROR msp430-interrupt ABI is experimental
|
|||
|
|
||||
= help: add #![feature(abi_msp430_interrupt)] to the crate attributes to enable
|
||||
|
||||
error[E0658]: PTX ABIs are experimental and subject to change
|
||||
error[E0658]: PTX ABIs are experimental and subject to change (see issue #38788)
|
||||
--> $DIR/feature-gate-abi.rs:91:1
|
||||
|
|
||||
LL | extern "ptx-kernel" {} //~ ERROR PTX ABIs are experimental and subject to change
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
error[E0658]: yield syntax is experimental
|
||||
error[E0658]: yield syntax is experimental (see issue #43122)
|
||||
--> $DIR/feature-gate-generators.rs:12:5
|
||||
|
|
||||
LL | yield true; //~ ERROR yield syntax is experimental
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
error[E0658]: the `#[global_allocator]` attribute is an experimental feature
|
||||
error[E0658]: the `#[global_allocator]` attribute is an experimental feature (see issue #27389)
|
||||
--> $DIR/feature-gate-global_allocator.rs:11:1
|
||||
|
|
||||
LL | #[global_allocator] //~ ERROR: attribute is an experimental feature
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
error[E0658]: parentheses in patterns are unstable
|
||||
error[E0658]: parentheses in patterns are unstable (see issue #51087)
|
||||
--> $DIR/feature-gate-pattern_parentheses.rs:13:9
|
||||
|
|
||||
LL | (pat) => {} //~ ERROR parentheses in patterns are unstable
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
error[E0658]: attribute is currently unstable
|
||||
error[E0658]: attribute is currently unstable (see issue #51088)
|
||||
--> $DIR/feature-gate-wasm_custom_section.rs:11:1
|
||||
|
|
||||
LL | #[wasm_custom_section = "foo"] //~ ERROR: attribute is currently unstable
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
error[E0658]: experimental attribute
|
||||
error[E0658]: experimental attribute (see issue #51088)
|
||||
--> $DIR/feature-gate-wasm_import_module.rs:11:1
|
||||
|
|
||||
LL | #[wasm_import_module = "test"] //~ ERROR: experimental
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
error[E0658]: the target feature `avx512bw` is currently unstable
|
||||
error[E0658]: the target feature `avx512bw` is currently unstable (see issue #44839)
|
||||
--> $DIR/target-feature-gate.rs:26:18
|
||||
|
|
||||
LL | #[target_feature(enable = "avx512bw")]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue