rust/tests/ui/feature-gates/feature-gate-custom_test_frameworks.stderr

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

22 lines
879 B
Plaintext
Raw Normal View History

2019-07-05 17:58:52 -05:00
error[E0658]: use of unstable library feature 'custom_test_frameworks': custom test frameworks are an unstable feature
2019-07-07 17:00:54 -05:00
--> $DIR/feature-gate-custom_test_frameworks.rs:3:3
2019-07-05 17:58:52 -05:00
|
LL | #[test_case]
2019-07-07 17:00:54 -05:00
| ^^^^^^^^^
2019-07-05 17:58:52 -05:00
|
2020-02-07 06:07:02 -06:00
= note: see issue #50297 <https://github.com/rust-lang/rust/issues/50297> for more information
= help: add `#![feature(custom_test_frameworks)]` to the crate attributes to enable
2019-07-05 17:58:52 -05:00
2019-04-10 18:40:12 -05:00
error[E0658]: custom test frameworks are an unstable feature
2018-12-25 09:56:47 -06:00
--> $DIR/feature-gate-custom_test_frameworks.rs:1:1
2018-07-20 20:04:02 -05:00
|
2019-03-09 06:03:44 -06:00
LL | #![test_runner(main)]
2018-07-20 20:04:02 -05:00
| ^^^^^^^^^^^^^^^^^^^^^
|
2020-02-07 06:07:02 -06:00
= note: see issue #50297 <https://github.com/rust-lang/rust/issues/50297> for more information
= help: add `#![feature(custom_test_frameworks)]` to the crate attributes to enable
2018-07-20 20:04:02 -05:00
2019-07-05 17:58:52 -05:00
error: aborting due to 2 previous errors
2018-07-20 20:04:02 -05:00
For more information about this error, try `rustc --explain E0658`.