rust/src/test/ui/lint/lint-stability-fields.stderr

348 lines
12 KiB
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:51:17
2018-08-08 07:28:26 -05:00
|
LL | let x = Unstable { //~ ERROR use of unstable
| ^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:61:13
2018-08-08 07:28:26 -05:00
|
LL | let Unstable { //~ ERROR use of unstable
| ^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:67:13
2018-08-08 07:28:26 -05:00
|
LL | let Unstable //~ ERROR use of unstable
| ^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:72:17
2018-08-08 07:28:26 -05:00
|
LL | let x = reexport::Unstable2(1, 2, 3); //~ ERROR use of unstable
| ^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:74:17
2018-08-08 07:28:26 -05:00
|
LL | let x = Unstable2(1, 2, 3); //~ ERROR use of unstable
| ^^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:80:13
2018-08-08 07:28:26 -05:00
|
LL | let Unstable2 //~ ERROR use of unstable
| ^^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:85:13
2018-08-08 07:28:26 -05:00
|
LL | let Unstable2 //~ ERROR use of unstable
| ^^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:90:17
2018-08-08 07:28:26 -05:00
|
LL | let x = Deprecated { //~ ERROR use of unstable
| ^^^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:100:13
2018-08-08 07:28:26 -05:00
|
LL | let Deprecated { //~ ERROR use of unstable
| ^^^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:106:13
2018-08-08 07:28:26 -05:00
|
LL | let Deprecated //~ ERROR use of unstable
| ^^^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:110:17
2018-08-08 07:28:26 -05:00
|
LL | let x = Deprecated2(1, 2, 3); //~ ERROR use of unstable
| ^^^^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:116:13
2018-08-08 07:28:26 -05:00
|
LL | let Deprecated2 //~ ERROR use of unstable
| ^^^^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:121:13
2018-08-08 07:28:26 -05:00
|
LL | let Deprecated2 //~ ERROR use of unstable
| ^^^^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:21:13
2018-08-08 07:28:26 -05:00
|
LL | override1: 2, //~ ERROR use of unstable
| ^^^^^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:22:13
2018-08-08 07:28:26 -05:00
|
LL | override2: 3, //~ ERROR use of unstable
| ^^^^^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:26:17
2018-08-08 07:28:26 -05:00
|
LL | let _ = x.override1; //~ ERROR use of unstable
| ^^^^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:27:17
2018-08-08 07:28:26 -05:00
|
LL | let _ = x.override2; //~ ERROR use of unstable
| ^^^^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:31:13
2018-08-08 07:28:26 -05:00
|
LL | override1: _, //~ ERROR use of unstable
| ^^^^^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:32:13
2018-08-08 07:28:26 -05:00
|
LL | override2: _ //~ ERROR use of unstable
| ^^^^^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:40:17
2018-08-08 07:28:26 -05:00
|
LL | let _ = x.1; //~ ERROR use of unstable
| ^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:41:17
2018-08-08 07:28:26 -05:00
|
LL | let _ = x.2; //~ ERROR use of unstable
| ^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:44:20
2018-08-08 07:28:26 -05:00
|
LL | _, //~ ERROR use of unstable
| ^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:45:20
2018-08-08 07:28:26 -05:00
|
LL | _) //~ ERROR use of unstable
| ^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:52:13
2018-08-08 07:28:26 -05:00
|
LL | inherit: 1, //~ ERROR use of unstable
| ^^^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:54:13
2018-08-08 07:28:26 -05:00
|
LL | override2: 3, //~ ERROR use of unstable
| ^^^^^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:57:17
2018-08-08 07:28:26 -05:00
|
LL | let _ = x.inherit; //~ ERROR use of unstable
| ^^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:59:17
2018-08-08 07:28:26 -05:00
|
LL | let _ = x.override2; //~ ERROR use of unstable
| ^^^^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:62:13
2018-08-08 07:28:26 -05:00
|
LL | inherit: _, //~ ERROR use of unstable
| ^^^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:64:13
2018-08-08 07:28:26 -05:00
|
LL | override2: _ //~ ERROR use of unstable
| ^^^^^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:76:17
2018-08-08 07:28:26 -05:00
|
LL | let _ = x.0; //~ ERROR use of unstable
| ^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:78:17
2018-08-08 07:28:26 -05:00
|
LL | let _ = x.2; //~ ERROR use of unstable
| ^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:81:14
2018-08-08 07:28:26 -05:00
|
LL | (_, //~ ERROR use of unstable
| ^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:83:14
2018-08-08 07:28:26 -05:00
|
LL | _) //~ ERROR use of unstable
| ^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:91:13
2018-08-08 07:28:26 -05:00
|
LL | inherit: 1, //~ ERROR use of unstable
| ^^^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:93:13
2018-08-08 07:28:26 -05:00
|
LL | override2: 3, //~ ERROR use of unstable
| ^^^^^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:96:17
2018-08-08 07:28:26 -05:00
|
LL | let _ = x.inherit; //~ ERROR use of unstable
| ^^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:98:17
2018-08-08 07:28:26 -05:00
|
LL | let _ = x.override2; //~ ERROR use of unstable
| ^^^^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:101:13
2018-08-08 07:28:26 -05:00
|
LL | inherit: _, //~ ERROR use of unstable
| ^^^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:103:13
2018-08-08 07:28:26 -05:00
|
LL | override2: _ //~ ERROR use of unstable
| ^^^^^^^^^^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:112:17
2018-08-08 07:28:26 -05:00
|
LL | let _ = x.0; //~ ERROR use of unstable
| ^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:114:17
2018-08-08 07:28:26 -05:00
|
LL | let _ = x.2; //~ ERROR use of unstable
| ^^^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:117:14
2018-08-08 07:28:26 -05:00
|
LL | (_, //~ ERROR use of unstable
| ^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-stability-fields.rs:119:14
2018-08-08 07:28:26 -05:00
|
LL | _) //~ ERROR use of unstable
| ^
|
= help: add #![feature(unstable_test_feature)] to the crate attributes to enable
error: aborting due to 43 previous errors
For more information about this error, try `rustc --explain E0658`.