#![crate_name = "foo"] use std::ops::Add; // @has foo/struct.Simd.html '//div[@class="item-decl"]/pre[@class="rust"]' 'pub struct Simd' pub struct Simd { inner: T, } // @has foo/struct.Simd.html '//div[@id="trait-implementations-list"]//h3[@class="code-header"]' 'impl Add> for Simd' impl Add for Simd { type Output = Self; fn add(self, rhs: Self) -> Self::Output { Self { inner: 0 } } }