blob: 821e947c707c7266dcf05ca559e7a48ff74a3fe5 [file] [log] [blame]
fn foo<F>(foo2: F)
where
F: Fn(
// this comment is deleted
),
{
}
fn foo_block<F>(foo2: F)
where
F: Fn(
/* this comment is deleted */
),
{
}
fn bar(
bar2: impl Fn(
// this comment is deleted
),
) {
}
fn bar_block(
bar2: impl Fn(
/* this comment is deleted */
),
) {
}