Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
methods
/
method-resolvable-path-in-pattern.rs
blob: 2973800a4d43bea9a7832682eed2c525bc8aa7d1 [
file
] [
log
] [
blame
] [
edit
]
struct
Foo
;
trait
MyTrait
{
fn
trait_bar
()
{}
}
impl
MyTrait
for
Foo
{}
fn
main
()
{
match
0u32
{
<
Foo
as
MyTrait
>::
trait_bar
=>
{}
//~^ ERROR expected unit struct, unit variant or constant, found associated function
}
}