about summary refs log tree commit diff
path: root/tests/ui/issues/issue-8506.rs
blob: 48abd7efc7b912323fd5230e02a98a456eaad1f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//@ 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 () { }