mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-28 11:38:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			242 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			242 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // run-pass
 | |
| #![allow(dead_code)]
 | |
| 
 | |
| struct S {
 | |
|     f0: String,
 | |
|     f1: String,
 | |
| }
 | |
| 
 | |
| pub fn main() {
 | |
|     let s = "Hello, world!".to_string();
 | |
|     let s = S {
 | |
|         f1: s.to_string(),
 | |
|         f0: s
 | |
|     };
 | |
|     assert_eq!(s.f0, "Hello, world!");
 | |
| }
 | 
