]> git.proxmox.com Git - rustc.git/blob - src/test/run-pass/tag-exports.rs
Imported Upstream version 0.6
[rustc.git] / src / test / run-pass / tag-exports.rs
1 // xfail-fast
2
3 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
4 // file at the top-level directory of this distribution and at
5 // http://rust-lang.org/COPYRIGHT.
6 //
7 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
8 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
9 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
10 // option. This file may not be copied, modified, or distributed
11 // except according to those terms.
12
13 use alder::*;
14
15 mod alder {
16 pub enum burnside { couch, davis }
17 pub enum everett { flanders, glisan, hoyt }
18 pub enum irving { johnson, kearney, lovejoy }
19 pub enum marshall { northrup, overton }
20 }
21
22 pub fn main() {
23 let _pettygrove: burnside = couch;
24 let _quimby: everett = flanders;
25 let _raleigh: irving = johnson;
26 let _savier: marshall;
27 }