2023-10-12 10:55:23 -05:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has foo/fn.bar.html
|
|
|
|
//@ has - '//pre[@class="rust item-decl"]' 'pub const fn bar() -> '
|
2023-10-12 10:55:23 -05:00
|
|
|
/// foo
|
|
|
|
pub const fn bar() -> usize {
|
|
|
|
2
|
|
|
|
}
|
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has foo/struct.Foo.html
|
|
|
|
//@ has - '//*[@class="method"]' 'const fn new()'
|
2023-10-12 10:55:23 -05:00
|
|
|
pub struct Foo(usize);
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
pub const fn new() -> Foo {
|
|
|
|
Foo(0)
|
|
|
|
}
|
|
|
|
}
|