Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
suggestions
/
issue-104327.rs
blob: dd621ae71008faf7cb22ad5bafac1ebccff3053d [
file
] [
log
] [
blame
] [
edit
]
trait
Bar
{}
trait
Foo
{
fn
f
()
{}
}
impl
Foo
for
dyn
Bar
{}
fn
main
()
{
Foo
::
f
();
//~^ ERROR cannot call associated function on trait without specifying the corresponding `impl` type
}