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