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 Normal View History

2023-10-12 15:55:23 +00:00
#![crate_name = "foo"]
#![feature(effects)]
2024-06-21 12:22:29 +00:00
#![allow(incomplete_features)]
2023-10-12 15:55:23 +00:00
//@ has foo/fn.bar.html
//@ 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
//@ 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)
}
}