Remove (..)-style return type notation

This commit is contained in:
Ryo Yoshida 2023-05-04 20:57:10 +09:00
parent a4966c9282
commit d7d8971203
No known key found for this signature in database
GPG key ID: E25698A930586171
6 changed files with 2 additions and 101 deletions

View file

@ -216,9 +216,6 @@ pub(super) fn lower_generic_args(
let arg = ConstRefOrPath::from_expr_opt(arg.expr());
args.push(GenericArg::Const(arg))
}
ast::GenericArg::ReturnTypeArg(_) => {
// FIXME: return type notation is experimental, we don't do anything with it yet.
}
}
}