Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
suggestions
/
issue-21673.rs
blob: 9d66cae056a81187de56596e02eb115cf2c0549c [
file
] [
log
] [
blame
] [
edit
]
trait
Foo
{
fn
method
(&
self
)
{}
}
fn
call_method
<
T
:
std
::
fmt
::
Debug
>(
x
:
&
T
)
{
x
.
method
()
//~ ERROR E0599
}
fn
call_method_2
<
T
>(
x
:
T
)
{
x
.
method
()
//~ ERROR E0599
}
fn
main
()
{}