Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
argument-suggestions
/
display-is-suggestable.rs
blob: acb61f543088a5062ca9bc7387b99fb8839ecd05 [
file
] [
log
] [
blame
] [
edit
]
use
std
::
fmt
::
Display
;
fn
foo
(
x
:
&(
dyn
Display
+
Send
))
{}
fn
main
()
{
foo
();
//~^ ERROR function takes 1 argument but 0 arguments were supplied
}