rust/tests/coverage/fn_sig_into_try.rs
Zalathar 1f9353ae2c coverage: Tweak individual tests to be unaffected by rustfmt
Some of these tests use non-standard formatting that we can simulate by
strategically adding `//` line comments.

One contains `where` clauses that would be split across multiple lines, which
we can keep on one line by moving the bounds to the generic type instead.
2024-01-16 16:14:27 +11:00

46 lines
647 B
Rust

#![feature(coverage_attribute)]
// compile-flags: --edition=2021
// Regression test for inconsistent handling of function signature spans that
// are followed by code using the `?` operator.
//
// For each of these similar functions, the line containing the function
// signature should be handled in the same way.
fn a() -> Option<i32>
//
{
Some(7i32);
Some(0)
}
fn b() -> Option<i32>
//
{
Some(7i32)?;
Some(0)
}
fn c() -> Option<i32>
//
{
let _ = Some(7i32)?;
Some(0)
}
fn d() -> Option<i32>
//
{
let _: () = ();
Some(7i32)?;
Some(0)
}
#[coverage(off)]
fn main() {
a();
b();
c();
d();
}