Sign in
android
/
toolchain
/
rustc
/
d2dbbcd40813d506244f1255bc2c84088a0197e1
/
.
/
src
/
test
/
ui
/
argument-suggestions
/
issue-100154.rs
blob: 4446b4bc2fcf341435ba0e13e78f0beea0a4c3e4 [
file
] [
log
] [
blame
]
fn
foo
(
i
:
impl
std
::
fmt
::
Display
)
{}
fn
main
()
{
foo
::<()>(());
//~^ ERROR this function takes 0 generic arguments but 1 generic argument was supplied
//~| ERROR `()` doesn't implement `std::fmt::Display`
}