mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 21:23:56 +00:00
Fix test
`if true` is recognized by MIR optimization.
This commit is contained in:
parent
790e611c9c
commit
a4fe567602
1 changed files with 2 additions and 2 deletions
|
@ -38,8 +38,8 @@ fn main() {
|
|||
|
||||
#[derive(Clone)]
|
||||
struct Alpha;
|
||||
fn double(a: Alpha) -> (Alpha, Alpha) {
|
||||
if true {
|
||||
fn with_branch(a: Alpha, b: bool) -> (Alpha, Alpha) {
|
||||
if b {
|
||||
(a.clone(), a.clone())
|
||||
} else {
|
||||
(Alpha, a)
|
||||
|
|
Loading…
Reference in a new issue