dcd3c0ed2e
As the comments in the issue state: it appears to work now, so this test should just stop any regressions. The second example in the issue description will format to the first, which is then a fixed-point.
14 lines
364 B
Rust
14 lines
364 B
Rust
fn main() {
|
|
fn f() -> Option<i32> {
|
|
Some("fffffffsssssssssddddssssfffffddddff")
|
|
.map(|s| s)
|
|
.map(|s| s.to_string())
|
|
.map(|res| match Some(res) {
|
|
Some(ref s) if s == "" => 41,
|
|
Some(_) => 42,
|
|
_ => 43,
|
|
})
|
|
}
|
|
println!("{:?}", f())
|
|
}
|