]> git.lizzy.rs Git - rust.git/blob - src/test/ui-fulldeps/hash-stable-is-unstable.rs
Auto merge of #67332 - matthewjasper:drop-in-place-cgus, r=michaelwoerister
[rust.git] / src / test / ui-fulldeps / hash-stable-is-unstable.rs
1 // ignore-stage1
2
3 extern crate rustc_data_structures;
4 //~^ use of unstable library feature 'rustc_private'
5 extern crate rustc;
6 //~^ use of unstable library feature 'rustc_private'
7 extern crate rustc_macros;
8 //~^ use of unstable library feature 'rustc_private'
9
10 use rustc_macros::HashStable;
11 //~^ use of unstable library feature 'rustc_private'
12
13 #[derive(HashStable)]
14 //~^ use of unstable library feature 'rustc_private'
15 struct Test;
16
17 fn main() {}