Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
suggestions
/
issue-99597.rs
blob: 8ba9e1fdd62213fc09c20324ca4d85d56323bbdf [
file
] [
log
] [
blame
] [
edit
]
#![
allow
(
dead_code
)]
trait
T1
{
}
trait
T2
{
fn
test
(&
self
)
{
}
}
fn
go
(
s
:
&
impl
T1
)
{
//~^ SUGGESTION (
s
.
test
();
//~^ ERROR no method named `test`
}
fn
main
()
{
}