2019-03-05 19:28:20 +01:00
|
|
|
// ignore-stage1
|
|
|
|
|
|
|
|
extern crate rustc_data_structures;
|
|
|
|
//~^ use of unstable library feature 'rustc_private'
|
2020-03-29 18:08:01 +02:00
|
|
|
extern crate rustc_middle;
|
2019-03-05 19:28:20 +01:00
|
|
|
//~^ use of unstable library feature 'rustc_private'
|
|
|
|
extern crate rustc_macros;
|
|
|
|
//~^ use of unstable library feature 'rustc_private'
|
|
|
|
|
|
|
|
use rustc_macros::HashStable;
|
|
|
|
//~^ use of unstable library feature 'rustc_private'
|
|
|
|
|
|
|
|
#[derive(HashStable)]
|
|
|
|
//~^ use of unstable library feature 'rustc_private'
|
|
|
|
struct Test;
|
2019-09-08 13:06:49 -04:00
|
|
|
|
|
|
|
fn main() {}
|