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