]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-8578.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / issues / issue-8578.rs
CommitLineData
60c5eb7d 1// check-pass
0bf4aa26 2#![allow(dead_code)]
b7449926
XL
3#![allow(non_camel_case_types)]
4#![allow(non_upper_case_globals)]
c34b1796
AL
5// pretty-expanded FIXME #23616
6
1a4d82fc
JJ
7pub struct UninterpretedOption_NamePart {
8 name_part: Option<String>,
970d7e83 9}
223e47cc 10
1a4d82fc
JJ
11impl<'a> UninterpretedOption_NamePart {
12 pub fn default_instance() -> &'static UninterpretedOption_NamePart {
13 static instance: UninterpretedOption_NamePart = UninterpretedOption_NamePart {
14 name_part: None,
15 };
16 &instance
970d7e83 17 }
223e47cc 18}
970d7e83 19
1a4d82fc 20pub fn main() {}