Add regression test for #92859
This commit is contained in:
parent
7036449c77
commit
0398aa8ccb
1 changed files with 24 additions and 0 deletions
24
src/test/rustdoc/generic_const_exprs.rs
Normal file
24
src/test/rustdoc/generic_const_exprs.rs
Normal file
|
@ -0,0 +1,24 @@
|
|||
// Regression test for <https://github.com/rust-lang/rust/issues/92859>.
|
||||
|
||||
#![allow(incomplete_features)]
|
||||
#![feature(generic_const_exprs)]
|
||||
|
||||
#![crate_name = "foo"]
|
||||
|
||||
// @has 'foo/trait.Foo.html'
|
||||
|
||||
pub trait Foo: Sized {
|
||||
const WIDTH: usize;
|
||||
|
||||
fn arrayify(self) -> [Self; Self::WIDTH];
|
||||
}
|
||||
|
||||
impl<T: Sized> Foo for T {
|
||||
const WIDTH: usize = 1;
|
||||
|
||||
// @has - '//*[@id="tymethod.arrayify"]/*[@class="code-header"]' \
|
||||
// 'fn arrayify(self) -> [Self; Self::WIDTH]'
|
||||
fn arrayify(self) -> [Self; Self::WIDTH] {
|
||||
[self]
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue