Sign in
android
/
toolchain
/
rustc
/
ff3f07ae99a30006dd85b9d73084edd9355c9db6
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
unwrap_or.rs
blob: bfb41e4394731e03969834ae9815017d6a91fcd2 [
file
] [
log
] [
blame
]
#![
warn
(
clippy
::
all
)]
fn
main
()
{
let
s
=
Some
(
String
::
from
(
"test string"
)).
unwrap_or
(
"Fail"
.
to_string
()).
len
();
}
fn
new_lines
()
{
let
s
=
Some
(
String
::
from
(
"test string"
)).
unwrap_or
(
"Fail"
.
to_string
()).
len
();
}