Add a regression test for unevaluated const in rustdoc
This commit is contained in:
parent
7f9dc73a31
commit
9c9b7b4eac
1 changed files with 21 additions and 0 deletions
21
src/test/rustdoc/const-generics/add-impl.rs
Normal file
21
src/test/rustdoc/const-generics/add-impl.rs
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
// ignore-tidy-linelength
|
||||
|
||||
#![feature(const_generics)]
|
||||
|
||||
#![crate_name = "foo"]
|
||||
|
||||
use std::ops::Add;
|
||||
|
||||
// @has foo/struct.Simd.html '//pre[@class="rust struct"]' 'pub struct Simd<T, const WIDTH: usize>'
|
||||
pub struct Simd<T, const WIDTH: usize> {
|
||||
inner: T,
|
||||
}
|
||||
|
||||
// @has foo/struct.Simd.html '//div[@id="implementations-list"]/h3/code' 'impl Add<Simd<u8, 16>> for Simd<u8, 16>'
|
||||
impl Add for Simd<u8, 16> {
|
||||
type Output = Self;
|
||||
|
||||
fn add(self, rhs: Self) -> Self::Output {
|
||||
Self { inner: 0 }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue