Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
suggestions
/
auxiliary
/
missing-assoc-fn-applicable-suggestions.rs
blob: b026035a6a1689ad4dabffaa10e2cdbc9a243261 [
file
] [
log
] [
blame
] [
edit
]
pub
trait
TraitB
{
type
Item
;
}
pub
trait
TraitA
<
A
>
{
type
Type
;
fn
bar
<
T
>(
_
:
T
)
->
Self
;
fn
baz
<
T
>(
_
:
T
)
->
Self
where
T
:
TraitB
,
<
T
as
TraitB
>::
Item
:
Copy
;
const
A
:
usize
;
}