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