mirror of
				https://github.com/mozilla/gecko-dev.git
				synced 2025-10-31 16:28:05 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			105 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			105 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| 
 | |
| struct S {
 | |
|   S() = default;
 | |
|   S(int i) : i(i) {}
 | |
|   int i = 1;
 | |
| };
 | |
| 
 | |
| struct F1 {
 | |
|   F1() : f() {}
 | |
|   S f;
 | |
| };
 | 
