2017-09-01 16:09:11 -05:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
// @has foo/fn.bar.html
|
2023-01-14 11:58:55 -06:00
|
|
|
// @has - '//div[@class="item-decl"]/pre[@class="rust"]' 'pub const fn bar() -> '
|
2017-09-01 16:09:11 -05:00
|
|
|
/// foo
|
|
|
|
pub const fn bar() -> usize {
|
|
|
|
2
|
|
|
|
}
|
|
|
|
|
|
|
|
// @has foo/struct.Foo.html
|
2021-06-02 03:59:10 -05:00
|
|
|
// @has - '//*[@class="method has-srclink"]' 'const fn new()'
|
2017-09-01 16:09:11 -05:00
|
|
|
pub struct Foo(usize);
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
pub const fn new() -> Foo { Foo(0) }
|
|
|
|
}
|