1
Fork 0

rustdoc: elide cross-crate default generic arguments

This commit is contained in:
León Orell Valerian Liehr 2023-06-09 15:30:08 +02:00
parent 7cc36de72d
commit 58a80c85b9
No known key found for this signature in database
GPG key ID: D17A07215F68E713
9 changed files with 271 additions and 40 deletions

View file

@ -7,7 +7,7 @@ pub struct Simd<T, const WIDTH: usize> {
inner: T,
}
// @has foo/struct.Simd.html '//div[@id="trait-implementations-list"]//h3[@class="code-header"]' 'impl Add<Simd<u8, 16>> for Simd<u8, 16>'
// @has foo/struct.Simd.html '//div[@id="trait-implementations-list"]//h3[@class="code-header"]' 'impl Add for Simd<u8, 16>'
impl Add for Simd<u8, 16> {
type Output = Self;