Add regression tests
This commit is contained in:
parent
19149d1ea9
commit
20363f40a9
1 changed files with 19 additions and 0 deletions
19
tests/rustdoc/const-fn-effects.rs
Normal file
19
tests/rustdoc/const-fn-effects.rs
Normal file
|
@ -0,0 +1,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)
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue