rust/tests/ui/issues/issue-8506.rs
2023-01-11 09:32:08 +00:00

15 lines
207 B
Rust

// 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 () { }