Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
conditional-compilation
/
test-cfg.rs
blob: 8750bae002873be65150a68703a03a830640af22 [
file
] [
log
] [
blame
]
// compile-flags: --cfg foo
#[
cfg
(
all
(
foo
,
bar
))]
// foo AND bar
fn
foo
()
{}
fn
main
()
{
foo
();
//~ ERROR cannot find function `foo` in this scope
}