2024-11-03 14:25:49 -08:00
|
|
|
//@ ignore-stage1 FIXME: this line can be removed once these new error messages are in stage 0 rustc
|
2022-03-20 21:24:06 +01:00
|
|
|
//@ compile-flags: -Zdeduplicate-diagnostics=yes
|
2019-03-05 19:28:20 +01:00
|
|
|
extern crate rustc_data_structures;
|
2024-11-02 16:10:24 -07:00
|
|
|
//~^ use of unstable library feature `rustc_private`
|
2024-01-10 01:39:02 -05:00
|
|
|
//~| NOTE: issue #27812 <https://github.com/rust-lang/rust/issues/27812> for more information
|
|
|
|
//~| NOTE: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2019-03-05 19:28:20 +01:00
|
|
|
extern crate rustc_macros;
|
2024-11-02 16:10:24 -07:00
|
|
|
//~^ use of unstable library feature `rustc_private`
|
2024-01-10 01:39:02 -05:00
|
|
|
//~| NOTE: see issue #27812 <https://github.com/rust-lang/rust/issues/27812> for more information
|
|
|
|
//~| NOTE: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2021-09-26 15:54:02 +02:00
|
|
|
extern crate rustc_query_system;
|
2024-11-02 16:10:24 -07:00
|
|
|
//~^ use of unstable library feature `rustc_private`
|
2024-01-10 01:39:02 -05:00
|
|
|
//~| NOTE: see issue #27812 <https://github.com/rust-lang/rust/issues/27812> for more information
|
|
|
|
//~| NOTE: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2019-03-05 19:28:20 +01:00
|
|
|
|
|
|
|
use rustc_macros::HashStable;
|
2024-11-02 16:10:24 -07:00
|
|
|
//~^ use of unstable library feature `rustc_private`
|
2024-01-10 01:39:02 -05:00
|
|
|
//~| NOTE: see issue #27812 <https://github.com/rust-lang/rust/issues/27812> for more information
|
|
|
|
//~| NOTE: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2019-03-05 19:28:20 +01:00
|
|
|
|
|
|
|
#[derive(HashStable)]
|
2024-11-02 16:10:24 -07:00
|
|
|
//~^ use of unstable library feature `rustc_private`
|
2024-01-10 01:39:02 -05:00
|
|
|
//~| NOTE: in this expansion of #[derive(HashStable)]
|
|
|
|
//~| NOTE: in this expansion of #[derive(HashStable)]
|
|
|
|
//~| NOTE: in this expansion of #[derive(HashStable)]
|
|
|
|
//~| NOTE: in this expansion of #[derive(HashStable)]
|
|
|
|
//~| NOTE: see issue #27812 <https://github.com/rust-lang/rust/issues/27812> for more information
|
|
|
|
//~| NOTE: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2019-03-05 19:28:20 +01:00
|
|
|
struct Test;
|
2019-09-08 13:06:49 -04:00
|
|
|
|
|
|
|
fn main() {}
|