Graydon Hoare | d1affff | 2012-12-11 01:32:48 | [diff] [blame] | 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 | |
Brian Anderson | 2999479 | 2012-01-26 00:23:43 | [diff] [blame] | 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 | |
Brian Anderson | e6d1b02 | 2012-12-13 22:18:47 | [diff] [blame] | 18 | #[oldcommander] |
Brian Anderson | 2999479 | 2012-01-26 00:23:43 | [diff] [blame] | 19 | william_t_riker, |
| 20 | |
| 21 | #[chief_medical_officer] |
| 22 | beverly_crusher, |
| 23 | |
| 24 | #[ships_councellor] |
| 25 | deanna_troi, |
| 26 | |
Brian Anderson | e6d1b02 | 2012-12-13 22:18:47 | [diff] [blame] | 27 | #[lieutenant_oldcommander] |
Brian Anderson | 2999479 | 2012-01-26 00:23:43 | [diff] [blame] | 28 | data, |
| 29 | |
| 30 | #[chief_of_security] |
| 31 | worf, |
| 32 | |
| 33 | #[chief_engineer] |
| 34 | geordi_la_forge, |
| 35 | } |
| 36 | |
Michael Sullivan | 92743dc | 2012-07-14 05:57:48 | [diff] [blame] | 37 | fn boldly_go(_crew_member: crew_of_enterprise_d, _where: ~str) { } |
Brian Anderson | 2999479 | 2012-01-26 00:23:43 | [diff] [blame] | 38 | |
Graydon Hoare | 89c8ef7 | 2013-02-02 03:43:17 | [diff] [blame] | 39 | pub fn main() { boldly_go(worf, ~"where no one has gone before"); } |