rust/src/test/ui/feature-gates/feature-gate-custom_test_frameworks.stderr

22 lines
851 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
|
= note: for more information, see https://github.com/rust-lang/rust/issues/50297
= 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
| ^^^^^^^^^^^^^^^^^^^^^
|
2019-04-11 11:42:06 -07:00
= note: for more information, see https://github.com/rust-lang/rust/issues/50297
= 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`.