mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
20 lines
237 B
Rust
20 lines
237 B
Rust
// run-pass
|
|
struct S {
|
|
x: String
|
|
}
|
|
|
|
impl S {
|
|
pub fn foo(self) {
|
|
self.bar();
|
|
}
|
|
|
|
pub fn bar(self) {
|
|
println!("{}", self.x);
|
|
}
|
|
}
|
|
|
|
pub fn main() {
|
|
let x = S { x: "Hello!".to_string() };
|
|
x.foo();
|
|
}
|