]> git.lizzy.rs Git - rust.git/blob - tests/ui-fulldeps/hash-stable-is-unstable.rs
Rollup merge of #107706 - tgross35:atomic-as-mut-ptr, r=m-ou-se
[rust.git] / tests / ui-fulldeps / hash-stable-is-unstable.rs
1 // ignore-stage1
2 // compile-flags: -Zdeduplicate-diagnostics=yes
3 extern crate rustc_data_structures;
4 //~^ use of unstable library feature 'rustc_private'
5 extern crate rustc_macros;
6 //~^ use of unstable library feature 'rustc_private'
7 extern crate rustc_query_system;
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() {}