2024-11-03 14:25:49 -08:00
|
|
|
//@ ignore-stage1 FIXME: this line can be removed once these new error messages are in stage 0 rustc
|
2019-09-29 18:17:27 -07:00
|
|
|
//@ edition:2018
|
2020-03-29 18:08:01 +02:00
|
|
|
//@ compile-flags:--extern rustc_middle
|
2019-09-29 18:17:27 -07:00
|
|
|
|
2020-03-29 18:08:01 +02:00
|
|
|
// Test that `--extern rustc_middle` fails with `rustc_private`.
|
2019-09-29 18:17:27 -07:00
|
|
|
|
2020-03-29 18:08:01 +02:00
|
|
|
pub use rustc_middle;
|
2024-11-02 16:10:24 -07:00
|
|
|
//~^ ERROR use of unstable library feature `rustc_private`
|
2019-09-29 18:17:27 -07:00
|
|
|
|
|
|
|
fn main() {}
|