rust/tests/rustdoc/sized_trait.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
388 B
Rust
Raw Normal View History

2021-02-18 19:46:34 +00:00
#![crate_name = "foo"]
//@ has foo/struct.Bar.html
//@ !has - '//*[@id="impl-Sized"]' ''
2021-02-18 19:46:34 +00:00
pub struct Bar {
a: u16,
}
//@ has foo/struct.Foo.html
//@ !has - '//*[@id="impl-Sized"]' ''
2021-02-18 19:46:34 +00:00
pub struct Foo<T: ?Sized>(T);
//@ has foo/struct.Unsized.html
//@ has - '//*[@id="impl-Sized-for-Unsized"]//h3[@class="code-header"]' 'impl !Sized for Unsized'
2021-02-18 19:46:34 +00:00
pub struct Unsized {
data: [u8],
}