rust/tests/incremental/string_constant.rs
Vadim Petrochenkov 64b6b5b6ce hir: Simplify hir_owner_nodes query
The query accept arbitrary DefIds, not just owner DefIds.
The return can be an `Option` because if there are no nodes, then it doesn't matter whether it's due to NonOwner or Phantom.
Also rename the query to `opt_hir_owner_nodes`.
2024-01-30 15:00:52 +03:00

43 lines
810 B
Rust

// revisions: cfail1 cfail2
// compile-flags: -Z query-dep-graph -Copt-level=0
// build-pass (FIXME(62277): could be check-pass?)
#![allow(warnings)]
#![feature(rustc_attrs)]
#![crate_type = "rlib"]
// Here the only thing which changes is the string constant in `x`.
// Therefore, the compiler deduces (correctly) that typeck is not
// needed even for callers of `x`.
pub mod x {
#[cfg(cfail1)]
pub fn x() {
println!("{}", "1");
}
#[cfg(cfail2)]
#[rustc_clean(except = "opt_hir_owner_nodes,promoted_mir", cfg = "cfail2")]
pub fn x() {
println!("{}", "2");
}
}
pub mod y {
use x;
#[rustc_clean(cfg = "cfail2")]
pub fn y() {
x::x();
}
}
pub mod z {
use y;
#[rustc_clean(cfg = "cfail2")]
pub fn z() {
y::y();
}
}