Open
Description
Location
https://doc.rust-lang.org/stable/error_codes/E0794.html
Summary
The docs say that a lifetime parameter must appear in an argument to be considered "late bound", but the following snippet emits E0794:
fn foo<'a>() {
}
fn bar() {
let _ = foo::<'static>();
}