]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui/unwrap_or.rs
Update upstream source from tag 'upstream/1.52.1+dfsg1'
[rustc.git] / src / tools / clippy / tests / ui / unwrap_or.rs
CommitLineData
f20569fa
XL
1#![warn(clippy::all)]
2
3fn main() {
4 let s = Some(String::from("test string")).unwrap_or("Fail".to_string()).len();
5}
6
7fn new_lines() {
8 let s = Some(String::from("test string")).unwrap_or("Fail".to_string()).len();
9}