summaryrefslogtreecommitdiffstats
path: root/tests/ui/cfg/auxiliary/cfg_inner_static.rs
blob: 6a619a4e768cf0e648b5b34af5db1e7ad57a58b7 (plain)
1
2
3
4
5
6
7
// this used to just ICE on compiling
pub fn foo() {
    if cfg!(foo) {
        static a: isize = 3;
        a
    } else { 3 };
}