Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
cfg
/
cmdline-false.rs
blob: 917679e2e424b0924f92fa9dd770bc546b4ded85 [
file
]
/// Test that `--cfg false` doesn't cause `cfg(false)` to evaluate to `true`
//@ compile-flags: --cfg r#false
#[
cfg
(
false
)]
fn
foo
()
{}
fn
main
()
{
foo
();
//~ ERROR cannot find function `foo` in this scope
}