rust/tests/rustdoc/const-fn-effects.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
352 B
Rust
Raw Normal View History

2023-10-12 15:55:23 +00:00
#![crate_name = "foo"]
#![feature(effects)]
// @has foo/fn.bar.html
2023-10-12 16:14:54 +00:00
// @has - '//pre[@class="rust item-decl"]' 'pub const fn bar() -> '
2023-10-12 15:55:23 +00:00
/// foo
pub const fn bar() -> usize {
2
}
// @has foo/struct.Foo.html
2023-10-12 16:14:54 +00:00
// @has - '//*[@class="method"]' 'const fn new()'
2023-10-12 15:55:23 +00:00
pub struct Foo(usize);
impl Foo {
pub const fn new() -> Foo {
Foo(0)
}
}