blob: 49b4cd874e6b0c907de9be899f7e2f35135201e5 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | #![crate_name = "foo"]
#![feature(effects)]
// @has foo/fn.bar.html
// @has - '//pre[@class="rust item-decl"]' 'pub const fn bar<const host: bool = true>() -> '
/// foo
pub const fn bar() -> usize {
    2
}
// @has foo/struct.Foo.html
// @has - '//*[@class="method"]' 'const fn new<const host: bool = true>()'
pub struct Foo(usize);
impl Foo {
    pub const fn new() -> Foo {
        Foo(0)
    }
}
 |