blob: 30a789a3e27bf9e1078131cb4729a87c2c6cedec [file] [log] [blame]
//@ run-pass
#![allow(non_upper_case_globals)]
#![allow(dead_code)]
enum Either {
One,
Other(String,String)
}
static one : Either = Either::One;
pub fn main () { }