Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-17351.rs
blob: 15bff07f6e5416f57fd91cba5cc28e2248bb7ceb [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
//@ pretty-expanded FIXME #23616
trait
Str
{
fn
foo
(&
self
)
{}
}
//~ WARN method `foo` is never used
impl
Str
for
str
{}
impl
<
'a, S: ?Sized> Str for &'
a S where S
:
Str
{}
fn
main
()
{
let
_
:
&
dyn
Str
=
&
"x"
;
}