2019-09-29 18:17:27 -07:00
|
|
|
// ignore-stage1
|
|
|
|
// 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;
|
2019-10-07 07:58:28 -07:00
|
|
|
//~^ ERROR use of unstable library feature 'rustc_private'
|
2019-09-29 18:17:27 -07:00
|
|
|
|
|
|
|
fn main() {}
|