mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-29 03:27:44 +00:00
17 lines
310 B
Rust
17 lines
310 B
Rust
![]() |
#![crate_name = "foo"]
|
||
|
|
||
|
// @has foo/fn.bar.html
|
||
|
// @has - '//*[@class="rust fn"]' 'pub const fn bar() -> '
|
||
|
/// foo
|
||
|
pub const fn bar() -> usize {
|
||
|
2
|
||
|
}
|
||
|
|
||
|
// @has foo/struct.Foo.html
|
||
|
// @has - '//*[@class="method"]' 'const fn new()'
|
||
|
pub struct Foo(usize);
|
||
|
|
||
|
impl Foo {
|
||
|
pub const fn new() -> Foo { Foo(0) }
|
||
|
}
|