blob: 85ef217e7671e490bfc7ec5977b291e62202f2b9 [file] [log] [blame]
// run-pass
#![allow(non_upper_case_globals)]
#![feature(rustc_private)]
extern crate rustc_serialize;
pub const other: u8 = 1;
pub const f: u8 = 1;
pub const d: u8 = 1;
pub const s: u8 = 1;
pub const state: u8 = 1;
pub const cmp: u8 = 1;
#[derive(Ord,Eq,PartialOrd,PartialEq,Debug,RustcDecodable,RustcEncodable,Hash)]
struct Foo {}
fn main() {
}