Skip to content

Commit dd54431

Browse files
committed
Fix pipe-select-macro
1 parent 945d57a commit dd54431

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/run-pass/pipe-select-macro.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ fn test(+foo: foo::client::foo, +bar: bar::client::bar) {
4242
},
4343

4444
do_baz(b) -> _next {
45-
if *b { debug!("true") } else { debug!("false") }
45+
if b { debug!("true") } else { debug!("false") }
4646
}
4747
}
4848
)

0 commit comments

Comments
 (0)