blob: 638de3292becbafb83eee6c48aecd6370b118f2c (
plain)
1
2
3
4
5
6
7
8
9
10
|
#![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
}
}
|