mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
20 lines
496 B
Rust
20 lines
496 B
Rust
//@ check-pass
|
|
#![allow(dead_code)]
|
|
#![allow(non_camel_case_types)]
|
|
#![allow(non_upper_case_globals)]
|
|
//@ pretty-expanded FIXME #23616
|
|
|
|
pub struct UninterpretedOption_NamePart {
|
|
name_part: Option<String>,
|
|
}
|
|
|
|
impl<'a> UninterpretedOption_NamePart {
|
|
pub fn default_instance() -> &'static UninterpretedOption_NamePart {
|
|
static instance: UninterpretedOption_NamePart = UninterpretedOption_NamePart {
|
|
name_part: None,
|
|
};
|
|
&instance
|
|
}
|
|
}
|
|
|
|
pub fn main() {}
|