2019-11-04 00:00:00 +00:00
|
|
|
// check-pass
|
2018-09-25 21:51:35 +00:00
|
|
|
#![allow(dead_code)]
|
2018-08-31 13:02:01 +00:00
|
|
|
#![allow(non_camel_case_types)]
|
|
|
|
#![allow(non_upper_case_globals)]
|
2015-03-22 20:13:15 +00:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2013-12-17 01:04:02 +00:00
|
|
|
pub struct UninterpretedOption_NamePart {
|
2014-05-22 23:57:53 +00:00
|
|
|
name_part: Option<String>,
|
2013-12-17 01:04:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> UninterpretedOption_NamePart {
|
|
|
|
pub fn default_instance() -> &'static UninterpretedOption_NamePart {
|
|
|
|
static instance: UninterpretedOption_NamePart = UninterpretedOption_NamePart {
|
|
|
|
name_part: None,
|
|
|
|
};
|
2014-07-04 07:56:57 +00:00
|
|
|
&instance
|
2013-12-17 01:04:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {}
|