Sign in
rust
/
rust-clippy
/
refs/heads/master
/
.
/
tests
/
ui-toml
/
struct_excessive_bools
/
test.rs
blob: 590cd6eeaa47b2a2b5aae3545810094200c55555 [
file
] [
log
] [
blame
] [
edit
]
#![
warn
(
clippy
::
struct_excessive_bools
)]
struct
S
{
//~^ struct_excessive_bools
a
:
bool
,
}
struct
Foo
;
fn
main
()
{}