mirror of
				https://github.com/mozilla/gecko-dev.git
				synced 2025-10-31 16:28:05 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			238 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			238 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include "structures.h"
 | |
| 
 | |
| extern void fstring(std::string);
 | |
| 
 | |
| void foo() {
 | |
|   std::string mystr1, mystr2;
 | |
|   auto myautostr1 = mystr1;
 | |
|   auto myautostr2 = mystr2;
 | |
| 
 | |
|   for (int i = 0; i < 10; ++i) {
 | |
|     fstring(mystr1 + mystr2 + mystr1);
 | |
|   }
 | |
| }
 | 
