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