mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
11 lines
215 B
Rust
11 lines
215 B
Rust
#![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
|
|
}
|
|
}
|