2021-02-18 19:46:34 +00:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
// @has foo/struct.Bar.html
|
2022-08-13 04:56:16 +00:00
|
|
|
// @!has - '//*[@id="impl-Sized"]' ''
|
2021-02-18 19:46:34 +00:00
|
|
|
pub struct Bar {
|
|
|
|
a: u16,
|
|
|
|
}
|
|
|
|
|
|
|
|
// @has foo/struct.Foo.html
|
2022-08-13 04:56:16 +00:00
|
|
|
// @!has - '//*[@id="impl-Sized"]' ''
|
2021-02-18 19:46:34 +00:00
|
|
|
pub struct Foo<T: ?Sized>(T);
|
|
|
|
|
|
|
|
// @has foo/struct.Unsized.html
|
2022-09-25 20:52:26 +00:00
|
|
|
// @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],
|
|
|
|
}
|