2022-06-19 14:38:10 +00:00
|
|
|
// This test ensures there is no whitespace before the first brace of
|
|
|
|
// trait, enum, struct and union items when they have a where clause.
|
|
|
|
|
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
// @has 'foo/trait.ToOwned.html'
|
2023-01-30 18:05:12 +00:00
|
|
|
// @snapshot trait - '//*[@class="rust item-decl"]'
|
2022-06-19 14:38:10 +00:00
|
|
|
pub trait ToOwned<T>
|
2023-10-31 13:58:03 +00:00
|
|
|
where
|
|
|
|
T: Clone,
|
2022-06-19 14:38:10 +00:00
|
|
|
{
|
|
|
|
type Owned;
|
|
|
|
fn to_owned(&self) -> Self::Owned;
|
|
|
|
fn whatever(&self) -> T;
|
|
|
|
}
|
|
|
|
|
|
|
|
// @has 'foo/trait.ToOwned2.html'
|
2023-01-30 18:05:12 +00:00
|
|
|
// @snapshot trait2 - '//*[@class="rust item-decl"]'
|
2022-06-19 14:38:10 +00:00
|
|
|
// There should be a whitespace before `{` in this case!
|
|
|
|
pub trait ToOwned2<T: Clone> {
|
|
|
|
type Owned;
|
|
|
|
fn to_owned(&self) -> Self::Owned;
|
|
|
|
fn whatever(&self) -> T;
|
|
|
|
}
|
|
|
|
|
|
|
|
// @has 'foo/enum.Cow.html'
|
2023-01-30 18:05:12 +00:00
|
|
|
// @snapshot enum - '//*[@class="rust item-decl"]'
|
2022-06-19 14:38:10 +00:00
|
|
|
pub enum Cow<'a, B: ?Sized + 'a>
|
|
|
|
where
|
2023-10-31 13:58:03 +00:00
|
|
|
B: ToOwned<()>,
|
2022-06-19 14:38:10 +00:00
|
|
|
{
|
|
|
|
Borrowed(&'a B),
|
|
|
|
Whatever(u32),
|
|
|
|
}
|
|
|
|
|
|
|
|
// @has 'foo/enum.Cow2.html'
|
2023-01-30 18:05:12 +00:00
|
|
|
// @snapshot enum2 - '//*[@class="rust item-decl"]'
|
2022-06-19 14:38:10 +00:00
|
|
|
// There should be a whitespace before `{` in this case!
|
2023-10-31 13:58:03 +00:00
|
|
|
pub enum Cow2<'a, B: ?Sized + ToOwned<()> + 'a> {
|
2022-06-19 14:38:10 +00:00
|
|
|
Borrowed(&'a B),
|
|
|
|
Whatever(u32),
|
|
|
|
}
|
|
|
|
|
|
|
|
// @has 'foo/struct.Struct.html'
|
2023-01-30 18:05:12 +00:00
|
|
|
// @snapshot struct - '//*[@class="rust item-decl"]'
|
2022-06-19 14:38:10 +00:00
|
|
|
pub struct Struct<'a, B: ?Sized + 'a>
|
|
|
|
where
|
2023-10-31 13:58:03 +00:00
|
|
|
B: ToOwned<()>,
|
2022-06-19 14:38:10 +00:00
|
|
|
{
|
|
|
|
pub a: &'a B,
|
|
|
|
pub b: u32,
|
|
|
|
}
|
|
|
|
|
|
|
|
// @has 'foo/struct.Struct2.html'
|
2023-01-30 18:05:12 +00:00
|
|
|
// @snapshot struct2 - '//*[@class="rust item-decl"]'
|
2022-06-19 14:38:10 +00:00
|
|
|
// There should be a whitespace before `{` in this case!
|
2023-10-31 13:58:03 +00:00
|
|
|
pub struct Struct2<'a, B: ?Sized + ToOwned<()> + 'a> {
|
2022-06-19 14:38:10 +00:00
|
|
|
pub a: &'a B,
|
|
|
|
pub b: u32,
|
|
|
|
}
|
|
|
|
|
|
|
|
// @has 'foo/union.Union.html'
|
2023-01-30 18:05:12 +00:00
|
|
|
// @snapshot union - '//*[@class="rust item-decl"]'
|
2022-06-19 14:38:10 +00:00
|
|
|
pub union Union<'a, B: ?Sized + 'a>
|
|
|
|
where
|
2023-10-31 13:58:03 +00:00
|
|
|
B: ToOwned<()>,
|
2022-06-19 14:38:10 +00:00
|
|
|
{
|
|
|
|
a: &'a B,
|
|
|
|
b: u32,
|
|
|
|
}
|
|
|
|
|
|
|
|
// @has 'foo/union.Union2.html'
|
2023-01-30 18:05:12 +00:00
|
|
|
// @snapshot union2 - '//*[@class="rust item-decl"]'
|
2022-06-19 14:38:10 +00:00
|
|
|
// There should be a whitespace before `{` in this case!
|
2023-10-31 13:58:03 +00:00
|
|
|
pub union Union2<'a, B: ?Sized + ToOwned<()> + 'a> {
|
2022-06-19 14:38:10 +00:00
|
|
|
a: &'a B,
|
|
|
|
b: u32,
|
|
|
|
}
|