mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
15 lines
227 B
Rust
15 lines
227 B
Rust
//@ run-pass
|
|
|
|
|
|
|
|
|
|
// Issue #50.
|
|
|
|
struct X { foo: String, bar: String }
|
|
|
|
pub fn main() {
|
|
let x = X {foo: "hello".to_string(), bar: "world".to_string()};
|
|
println!("{}", x.foo.clone());
|
|
println!("{}", x.bar.clone());
|
|
}
|