rust/tests/ui/generics/generic-function-item-where...

7 lines
106 B
Rust

fn foo<U>() {}
fn main() {
foo::<main>()
//~^ ERROR constant provided when a type was expected
}