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