blob: cc32b89234f21eced1db4a55985920dbfb3d5981 [file] [log] [blame]
// 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 () { }