rust/tests/ui/lint/lint-stability-fields.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

348 lines
11 KiB
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:56:17
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let x = Unstable {
2018-08-08 12:28:26 +00:00
| ^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:66:13
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let Unstable {
2018-08-08 12:28:26 +00:00
| ^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:72:13
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let Unstable
2018-08-08 12:28:26 +00:00
| ^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:77:17
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let x = reexport::Unstable2(1, 2, 3);
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:79:17
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let x = Unstable2(1, 2, 3);
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:85:13
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let Unstable2
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:90:13
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let Unstable2
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:95:17
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let x = Deprecated {
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:105:13
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let Deprecated {
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:111:13
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let Deprecated
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:115:17
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let x = Deprecated2(1, 2, 3);
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:121:13
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let Deprecated2
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:126:13
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let Deprecated2
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 15:56:47 +00:00
--> $DIR/lint-stability-fields.rs:21:13
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | override1: 2,
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 15:56:47 +00:00
--> $DIR/lint-stability-fields.rs:22:13
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | override2: 3,
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:27:17
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let _ = x.override1;
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:28:17
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let _ = x.override2;
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:33:13
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | override1: _,
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:34:13
2018-08-08 12:28:26 +00:00
|
LL | override2: _,
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:43:17
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let _ = x.1;
2018-08-08 12:28:26 +00:00
| ^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:44:17
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let _ = x.2;
2018-08-08 12:28:26 +00:00
| ^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:48:20
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | _,
2018-08-08 12:28:26 +00:00
| ^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:49:20
2018-08-08 12:28:26 +00:00
|
LL | _,
2018-08-08 12:28:26 +00:00
| ^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:57:13
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | inherit: 1,
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:59:13
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | override2: 3,
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:62:17
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let _ = x.inherit;
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:64:17
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let _ = x.override2;
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:67:13
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | inherit: _,
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:69:13
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | override2: _
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:81:17
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let _ = x.0;
2018-08-08 12:28:26 +00:00
| ^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:83:17
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let _ = x.2;
2018-08-08 12:28:26 +00:00
| ^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:86:14
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | (_,
2018-08-08 12:28:26 +00:00
| ^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:88:14
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | _)
2018-08-08 12:28:26 +00:00
| ^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:96:13
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | inherit: 1,
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:98:13
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | override2: 3,
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:101:17
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let _ = x.inherit;
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:103:17
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let _ = x.override2;
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:106:13
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | inherit: _,
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:108:13
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | override2: _
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:117:17
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let _ = x.0;
2018-08-08 12:28:26 +00:00
| ^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:119:17
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let _ = x.2;
2018-08-08 12:28:26 +00:00
| ^^^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:122:14
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | (_,
2018-08-08 12:28:26 +00:00
| ^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-stability-fields.rs:124:14
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | _)
2018-08-08 12:28:26 +00:00
| ^
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 12:28:26 +00:00
error: aborting due to 43 previous errors
For more information about this error, try `rustc --explain E0658`.