Sign in
rust
/
rust
/
e8a00a7621606f8c4a34b679cefaaa6aecf2442e
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
crashes
/
ice-12491.rs
blob: 013aadadce516403eca0d171b1e733e00c6d7a9f [
file
] [
log
] [
blame
]
#![
warn
(
clippy
::
needless_return
)]
fn
main
()
{
if
(
true
)
{
// anything一些中文
return
;
//~^ needless_return
}
}