mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 11:32:29 +00:00
20 lines
239 B
Rust
20 lines
239 B
Rust
//@ check-pass
|
|
//@ compile-flags: --cfg false --check-cfg=cfg(r#false)
|
|
|
|
#![deny(warnings)]
|
|
|
|
#[expect(unexpected_cfgs)]
|
|
mod a {
|
|
#[cfg(r#true)]
|
|
pub fn foo() {}
|
|
}
|
|
|
|
mod b {
|
|
#[cfg(r#false)]
|
|
pub fn bar() {}
|
|
}
|
|
|
|
fn main() {
|
|
b::bar()
|
|
}
|