2013-12-17 01:04:02 +00:00
|
|
|
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2018-08-30 12:18:55 +00:00
|
|
|
// run-pass
|
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() {}
|