blob: d93e21cf7916c1c33958f245046fbc7b4cff1e7e [file] [log] [blame]
// ignore-stage1
extern crate rustc_data_structures;
//~^ use of unstable library feature 'rustc_private'
extern crate rustc_middle;
//~^ 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;
fn main() {}