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

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

21 lines
383 B
Rust
Raw Permalink Normal View History

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