Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// compile-flags: -Znext-solver
// check-pass
fn needs_send(_: impl Send) {}
fn main() {
needs_send(1);
}