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