mirror of
				https://github.com/mozilla/gecko-dev.git
				synced 2025-11-01 00:38:50 +02:00 
			
		
		
		
	 bc36108b34
			
		
	
	
		bc36108b34
		
	
	
	
	
		
			
			Differential Revision: https://phabricator.services.mozilla.com/D7045 --HG-- extra : moz-landing-system : lando
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			83 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			83 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| struct S {
 | |
|   int x;
 | |
| };
 | |
| 
 | |
| void f(struct S s);
 | |
| 
 | |
| void test() {
 | |
|   struct S s;
 | |
|   f(s);
 | |
| }
 |