2019-07-02 21:30:28 +00:00
|
|
|
//@ build-pass (FIXME(62277): could be check-pass?)
|
2012-01-26 00:23:43 +00:00
|
|
|
//@ pp-exact - Make sure we actually print the attributes
|
2015-03-22 20:13:15 +00:00
|
|
|
//@ pretty-expanded FIXME #23616
|
|
|
|
|
2019-06-08 08:36:43 +00:00
|
|
|
#![allow(non_camel_case_types)]
|
|
|
|
#![feature(rustc_attrs)]
|
2012-01-26 00:23:43 +00:00
|
|
|
|
|
|
|
enum crew_of_enterprise_d {
|
|
|
|
|
2019-06-08 08:36:43 +00:00
|
|
|
#[rustc_dummy]
|
2012-01-26 00:23:43 +00:00
|
|
|
jean_luc_picard,
|
|
|
|
|
2019-06-08 08:36:43 +00:00
|
|
|
#[rustc_dummy]
|
2012-01-26 00:23:43 +00:00
|
|
|
william_t_riker,
|
|
|
|
|
2019-06-08 08:36:43 +00:00
|
|
|
#[rustc_dummy]
|
2012-01-26 00:23:43 +00:00
|
|
|
beverly_crusher,
|
|
|
|
|
2019-06-08 08:36:43 +00:00
|
|
|
#[rustc_dummy]
|
2012-01-26 00:23:43 +00:00
|
|
|
deanna_troi,
|
|
|
|
|
2019-06-08 08:36:43 +00:00
|
|
|
#[rustc_dummy]
|
2012-01-26 00:23:43 +00:00
|
|
|
data,
|
|
|
|
|
2019-06-08 08:36:43 +00:00
|
|
|
#[rustc_dummy]
|
2012-01-26 00:23:43 +00:00
|
|
|
worf,
|
|
|
|
|
2019-06-08 08:36:43 +00:00
|
|
|
#[rustc_dummy]
|
2012-01-26 00:23:43 +00:00
|
|
|
geordi_la_forge,
|
|
|
|
}
|
|
|
|
|
2014-05-22 23:57:53 +00:00
|
|
|
fn boldly_go(_crew_member: crew_of_enterprise_d, _where: String) { }
|
2012-01-26 00:23:43 +00:00
|
|
|
|
2019-06-08 08:36:43 +00:00
|
|
|
fn main() {
|
2014-11-06 08:05:53 +00:00
|
|
|
boldly_go(crew_of_enterprise_d::worf,
|
|
|
|
"where no one has gone before".to_string());
|
|
|
|
}
|