Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
auxiliary
/
issue-2472-b.rs
blob: 0d151520fe07908c7db0706e2c8411e65be8fceb [
file
] [
log
] [
blame
] [
edit
]
pub
struct
S
(
pub
());
impl
S
{
pub
fn
foo
(&
self
)
{
}
}
pub
trait
T
{
fn
bar
(&
self
);
}
impl
T
for
S
{
fn
bar
(&
self
)
{
}
}