Sign in
android
/
toolchain
/
rustc
/
ff3f07ae99a30006dd85b9d73084edd9355c9db6
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
rename.rs
blob: b1846a1096cbdb6305197c3b44ebe7946b73bf74 [
file
] [
log
] [
blame
]
#![
allow
(
stutter
)]
#![
warn
(
clippy
::
cyclomatic_complexity
)]
#[
warn
(
clippy
::
stutter
)]
fn
main
()
{}
#[
warn
(
clippy
::
new_without_default_derive
)]
struct
Foo
;
impl
Foo
{
fn
new
()
->
Self
{
Foo
}
}