]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-8506.rs
New upstream version 1.49.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-8506.rs
CommitLineData
b7449926 1// run-pass
c34b1796 2// pretty-expanded FIXME #23616
b7449926 3#![allow(non_upper_case_globals)]
c34b1796 4
1a4d82fc 5#![allow(dead_code)]
223e47cc 6
1a4d82fc
JJ
7enum Either {
8 One,
9 Other(String,String)
223e47cc 10}
1a4d82fc
JJ
11
12static one : Either = Either::One;
13
14pub fn main () { }