]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-8506.rs
Rollup merge of #86479 - exphp-forks:float-debug-exponential, r=yaahc
[rust.git] / src / test / ui / issues / issue-8506.rs
1 // run-pass
2 // pretty-expanded FIXME #23616
3 #![allow(non_upper_case_globals)]
4
5 #![allow(dead_code)]
6
7 enum Either {
8     One,
9     Other(String,String)
10 }
11
12 static one : Either = Either::One;
13
14 pub fn main () { }