blob: 48abd7efc7b912323fd5230e02a98a456eaad1f7 [file] [log] [blame] [edit]
//@ run-pass
//@ pretty-expanded FIXME #23616
#![allow(non_upper_case_globals)]
#![allow(dead_code)]
enum Either {
One,
Other(String,String)
}
static one : Either = Either::One;
pub fn main () { }