blob: 6a619a4e768cf0e648b5b34af5db1e7ad57a58b7 [file] [log] [blame]
// this used to just ICE on compiling
pub fn foo() {
if cfg!(foo) {
static a: isize = 3;
a
} else { 3 };
}