mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
18 lines
507 B
Rust
18 lines
507 B
Rust
// ignore-stage1
|
|
// compile-flags: -Zdeduplicate-diagnostics=yes
|
|
extern crate rustc_data_structures;
|
|
//~^ use of unstable library feature 'rustc_private'
|
|
extern crate rustc_macros;
|
|
//~^ use of unstable library feature 'rustc_private'
|
|
extern crate rustc_query_system;
|
|
//~^ 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() {}
|