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