]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/variant-attributes.rs
Reliciense makefiles and testsuite. Yup.
[rust.git] / src / test / run-pass / variant-attributes.rs
1 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // pp-exact - Make sure we actually print the attributes
12
13 enum crew_of_enterprise_d {
14
15     #[captain]
16     jean_luc_picard,
17
18     #[commander]
19     william_t_riker,
20
21     #[chief_medical_officer]
22     beverly_crusher,
23
24     #[ships_councellor]
25     deanna_troi,
26
27     #[lieutenant_commander]
28     data,
29
30     #[chief_of_security]
31     worf,
32
33     #[chief_engineer]
34     geordi_la_forge,
35 }
36
37 fn boldly_go(_crew_member: crew_of_enterprise_d, _where: ~str) { }
38
39 fn main() { boldly_go(worf, ~"where no one has gone before"); }