rust/tests/ui-fulldeps/hash-stable-is-unstable.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
1.6 KiB
Rust
Raw Normal View History

2022-03-21 04:24:06 +08:00
//@ compile-flags: -Zdeduplicate-diagnostics=yes
2019-03-06 02:28:20 +08:00
extern crate rustc_data_structures;
//~^ use of unstable library feature 'rustc_private'
2024-01-10 14:39:02 +08: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-06 02:28:20 +08:00
extern crate rustc_macros;
//~^ use of unstable library feature 'rustc_private'
2024-01-10 14:39:02 +08: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 21:54:02 +08:00
extern crate rustc_query_system;
//~^ use of unstable library feature 'rustc_private'
2024-01-10 14:39:02 +08: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-06 02:28:20 +08:00
use rustc_macros::HashStable;
//~^ use of unstable library feature 'rustc_private'
2024-01-10 14:39:02 +08: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-06 02:28:20 +08:00
#[derive(HashStable)]
//~^ use of unstable library feature 'rustc_private'
2024-01-10 14:39:02 +08: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-06 02:28:20 +08:00
struct Test;
fn main() {}