mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			259 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			259 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ run-pass
 | |
| #![allow(dead_code)]
 | |
| //@ pretty-expanded FIXME #23616
 | |
| #![allow(non_upper_case_globals)]
 | |
| 
 | |
| enum Foo {
 | |
|     IntVal(i32),
 | |
|     Int64Val(i64)
 | |
| }
 | |
| 
 | |
| struct Bar {
 | |
|     i: i32,
 | |
|     v: Foo
 | |
| }
 | |
| 
 | |
| static bar: Bar = Bar { i: 0, v: Foo::IntVal(0) };
 | |
| 
 | |
| pub fn main() {}
 | 
