2021-07-25 12:57:45 +00:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
// @has foo/struct.Foo.html
|
|
|
|
// @has - '//h2[@id="fields"]' 'Tuple Fields'
|
2022-10-15 18:53:47 +00:00
|
|
|
// @has - '//div[@class="sidebar-elems"]//h3/a[@href="#fields"]' 'Tuple Fields'
|
2021-07-25 12:57:45 +00:00
|
|
|
// @has - '//*[@id="structfield.0"]' '0: u32'
|
2021-11-29 16:14:05 +00:00
|
|
|
// @has - '//*[@id="main-content"]/div[@class="docblock"]' 'hello'
|
2022-08-13 04:56:16 +00:00
|
|
|
// @!has - '//*[@id="structfield.1"]' ''
|
2021-07-25 12:57:45 +00:00
|
|
|
// @has - '//*[@id="structfield.2"]' '2: char'
|
|
|
|
// @has - '//*[@id="structfield.3"]' '3: i8'
|
2021-11-29 16:14:05 +00:00
|
|
|
// @has - '//*[@id="main-content"]/div[@class="docblock"]' 'not hello'
|
2021-07-25 12:57:45 +00:00
|
|
|
pub struct Foo(
|
|
|
|
/// hello
|
|
|
|
pub u32,
|
|
|
|
char,
|
|
|
|
pub char,
|
|
|
|
/// not hello
|
|
|
|
pub i8,
|
|
|
|
);
|
2021-07-25 19:18:11 +00:00
|
|
|
|
|
|
|
// @has foo/enum.Bar.html
|
2023-01-30 18:05:12 +00:00
|
|
|
// @has - '//pre[@class="rust item-decl"]' 'BarVariant(String),'
|
2021-10-20 05:48:53 +00:00
|
|
|
// @matches - '//*[@id="variant.BarVariant.fields"]/h4' '^Tuple Fields$'
|
2021-07-25 19:18:11 +00:00
|
|
|
// @has - '//*[@id="variant.BarVariant.field.0"]' '0: String'
|
|
|
|
// @has - '//*[@id="variant.BarVariant.fields"]//*[@class="docblock"]' 'Hello docs'
|
2021-10-20 05:48:53 +00:00
|
|
|
// @matches - '//*[@id="variant.FooVariant.fields"]/h4' '^Fields$'
|
2021-12-09 01:09:17 +00:00
|
|
|
// @has - '//*[@id="variant.BazVariant.fields"]//*[@class="docblock"]' 'dox'
|
|
|
|
// @has - '//*[@id="variant.OtherVariant.fields"]//*[@class="docblock"]' 'dox'
|
|
|
|
// @!matches - '//*[@id="variant.QuuxVariant.fields"]/h4' '^Tuple Fields$'
|
2021-07-25 19:18:11 +00:00
|
|
|
pub enum Bar {
|
|
|
|
BarVariant(
|
|
|
|
/// Hello docs
|
|
|
|
String
|
|
|
|
),
|
|
|
|
FooVariant {
|
|
|
|
/// hello
|
|
|
|
x: u32,
|
|
|
|
},
|
2021-12-09 01:09:17 +00:00
|
|
|
BazVariant(
|
|
|
|
String,
|
|
|
|
/// dox
|
|
|
|
u32,
|
|
|
|
),
|
|
|
|
OtherVariant(
|
|
|
|
/// dox
|
|
|
|
String,
|
|
|
|
u32,
|
|
|
|
),
|
|
|
|
QuuxVariant(String),
|
2021-07-25 19:18:11 +00:00
|
|
|
}
|