blob: fe6a828505ab24b2f43883b5f4ba4f9199df5668 [file] [log] [blame] [edit]
#![crate_type="lib"]
pub struct Foo;
impl Foo {
//@ has const/struct.Foo.html '//*[@id="method.new"]//h4[@class="code-header"]' 'const unsafe fn new'
pub const unsafe fn new() -> Foo {
Foo
}
}