Sign in
android
/
toolchain
/
rustc
/
2f3fdfeb95384b9046ea35b3532e23c652eca660
/
.
/
src
/
test
/
ui
/
default-method-simple.rs
blob: 6f7ae6a3e0b5eace14e55e9d0a489e51eb7096db [
file
] [
log
] [
blame
]
// run-pass
#![
allow
(
dead_code
)]
trait
Foo
{
fn
f
(&
self
)
{
println
!(
"Hello!"
);
self
.
g
();
}
fn
g
(&
self
);
}
struct
A
{
x
:
isize
}
impl
Foo
for
A
{
fn
g
(&
self
)
{
println
!(
"Goodbye!"
);
}
}
pub
fn
main
()
{
let
a
=
A
{
x
:
1
};
a
.
f
();
}