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