mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
a21d7713db
Test for presence rather than absence Remove redundant tests Issues in those parts will likely be caught by other parts of the test suite.
9 lines
253 B
Rust
9 lines
253 B
Rust
// @has issue_118180_empty_tuple_struct/enum.Enum.html
|
|
pub enum Enum {
|
|
// @has - '//*[@id="variant.Empty"]//h3' 'Empty()'
|
|
Empty(),
|
|
}
|
|
|
|
// @has issue_118180_empty_tuple_struct/struct.Empty.html
|
|
// @has - '//pre/code' 'Empty()'
|
|
pub struct Empty();
|