mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-26 13:01:27 +03:00
0ea8958c02
This is the subset of incremental tests that have a FIXME to consider migrating to check-pass instead. That migration is beyond the scope of this PR, but might be attempted later.
26 lines
669 B
Rust
26 lines
669 B
Rust
// Check that the hash of `foo` doesn't change just because we ordered
|
|
// the nested items (or even added new ones).
|
|
|
|
//@ revisions: bpass1 bpass2
|
|
//@ compile-flags: -Z query-dep-graph
|
|
//@ ignore-backends: gcc
|
|
// FIXME(#62277): could be check-pass?
|
|
|
|
#![crate_type = "rlib"]
|
|
#![feature(rustc_attrs)]
|
|
#![allow(dead_code)]
|
|
|
|
#[rustc_clean(except = "opt_hir_owner_nodes", cfg = "bpass2")]
|
|
pub fn foo() {
|
|
#[cfg(bpass1)]
|
|
pub fn baz() {} // order is different...
|
|
|
|
#[rustc_clean(cfg = "bpass2")]
|
|
pub fn bar() {} // but that doesn't matter.
|
|
|
|
#[cfg(bpass2)]
|
|
pub fn baz() {} // order is different...
|
|
|
|
pub fn bap() {} // neither does adding a new item
|
|
}
|