blob: 5f4e156582d4de035e158f8a6faabd034fe6f0db [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 */)) {}