mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
27 lines
292 B
Rust
27 lines
292 B
Rust
//@ 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();
|
|
}
|