mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
20 lines
352 B
Rust
20 lines
352 B
Rust
#![crate_name = "foo"]
|
|
#![feature(effects)]
|
|
|
|
// @has foo/fn.bar.html
|
|
// @has - '//pre[@class="rust item-decl"]' '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)
|
|
}
|
|
}
|