diff options
| author | León Orell Valerian Liehr <me@fmease.dev> | 2023-06-09 15:30:08 +0200 | 
|---|---|---|
| committer | León Orell Valerian Liehr <me@fmease.dev> | 2023-10-30 16:44:52 +0100 | 
| commit | 58a80c85b9323e59e1b7e744d6782997a3dcb5ce (patch) | |
| tree | cd8eef91c8cda7475b0fb55085b15c905794b17d /tests/rustdoc/const-generics/add-impl.rs | |
| parent | 7cc36de72d9a5fd6881946c673ff47586214ad1e (diff) | |
| download | rust-58a80c85b9323e59e1b7e744d6782997a3dcb5ce.tar.gz rust-58a80c85b9323e59e1b7e744d6782997a3dcb5ce.zip | |
rustdoc: elide cross-crate default generic arguments
Diffstat (limited to 'tests/rustdoc/const-generics/add-impl.rs')
| -rw-r--r-- | tests/rustdoc/const-generics/add-impl.rs | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/tests/rustdoc/const-generics/add-impl.rs b/tests/rustdoc/const-generics/add-impl.rs index 195e47bc8ba..df490d2c636 100644 --- a/tests/rustdoc/const-generics/add-impl.rs +++ b/tests/rustdoc/const-generics/add-impl.rs @@ -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; | 
