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-06 01:58:52 +03:00
error[E0658]: use of unstable library feature 'custom_test_frameworks': custom test frameworks are an unstable feature
2019-07-08 01:00:54 +03:00
--> $DIR/feature-gate-custom_test_frameworks.rs:3:3
2019-07-06 01:58:52 +03:00
|
LL | #[test_case]
2019-07-08 01:00:54 +03:00
| ^^^^^^^^^
2019-07-06 01:58:52 +03:00
|
2020-02-07 13:07:02 +01: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-06 01:58:52 +03:00
2019-04-10 16:40:12 -07:00
error[E0658]: custom test frameworks are an unstable feature
2018-12-25 08:56:47 -07:00
--> $DIR/feature-gate-custom_test_frameworks.rs:1:1
2018-07-20 18:04:02 -07:00
|
2019-03-09 15:03:44 +03:00
LL | #![test_runner(main)]
2018-07-20 18:04:02 -07:00
| ^^^^^^^^^^^^^^^^^^^^^
|
2020-02-07 13:07:02 +01: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 18:04:02 -07:00
2019-07-06 01:58:52 +03:00
error: aborting due to 2 previous errors
2018-07-20 18:04:02 -07:00
For more information about this error, try `rustc --explain E0658`.