summaryrefslogtreecommitdiffstats
path: root/src/test/ui/imports/extern-prelude-extern-crate-cfg.rs
blob: cfae08fccaa4b72dc5e683fdfb4841f4cca89d1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// build-pass (FIXME(62277): could be check-pass?)
// compile-flags:--cfg my_feature

#![no_std]

#[cfg(my_feature)]
extern crate std;

mod m {
    #[cfg(my_feature)]
    fn conditional() {
        std::vec::Vec::<u8>::new(); // OK
    }
}

fn main() {}