summaryrefslogtreecommitdiffstats
path: root/src/test/ui-fulldeps/deriving-hygiene.rs
blob: 8486b8b6e481a3e300696e90f800fd962100a0cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// run-pass

#![allow(non_upper_case_globals)]
#![feature(rustc_private)]
extern crate rustc_macros;
extern crate rustc_serialize;

use rustc_macros::{Decodable, Encodable};

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, Decodable, Encodable, Hash)]
struct Foo {}

fn main() {}