11 lines
190 B
Rust
11 lines
190 B
Rust
|
|
#![crate_type="lib"]
|
||
|
|
|
||
|
|
pub struct Foo;
|
||
|
|
|
||
|
|
impl Foo {
|
||
|
|
// @has const/struct.Foo.html '//*[@id="new.v"]//code' 'const unsafe fn new'
|
||
|
|
pub const unsafe fn new() -> Foo {
|
||
|
|
Foo
|
||
|
|
}
|
||
|
|
}
|