mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
28 lines
626 B
Rust
28 lines
626 B
Rust
//@ run-pass
|
|
|
|
#![allow(non_upper_case_globals)]
|
|
#![feature(rustc_private)]
|
|
extern crate rustc_macros;
|
|
extern crate rustc_serialize;
|
|
extern crate rustc_span;
|
|
|
|
use rustc_macros::{Decodable, Encodable};
|
|
|
|
// Necessary to pull in object code as the rest of the rustc crates are shipped only as rmeta
|
|
// files.
|
|
#[allow(unused_extern_crates)]
|
|
extern crate rustc_driver;
|
|
|
|
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;
|
|
|
|
#[allow(dead_code)]
|
|
#[derive(Ord, Eq, PartialOrd, PartialEq, Debug, Decodable, Encodable, Hash)]
|
|
struct Foo {}
|
|
|
|
fn main() {}
|