Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
pretty
/
empty-impl.rs
blob: b0275e4a3a38f027b3e4620c823b146f3de650f8 [
file
] [
log
] [
blame
] [
edit
]
//@ compile-flags: --crate-type=lib
trait
X
{
fn
dummy
(&
self
)
{
}
}
impl
X
for
usize
{
}
trait
Y
{
fn
dummy
(&
self
)
{
}
}
impl
Y
for
usize
{
}