mirror of
				https://github.com/mozilla/gecko-dev.git
				synced 2025-10-31 16:28:05 +02:00 
			
		
		
		
	Differential Revision: https://phabricator.services.mozilla.com/D58936 --HG-- extra : moz-landing-system : lando
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			174 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			174 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| void f()
 | |
| {
 | |
| }
 | |
| 
 | |
| void foo() {
 | |
|   if (1)
 | |
|     if (0)
 | |
|       f();
 | |
|   else
 | |
|     f();
 | |
| }
 | |
| 
 | |
| void foo2() {
 | |
|   constexpr bool a = true;
 | |
|   if constexpr (a) {
 | |
|     f();
 | |
|   } else {
 | |
|     f();
 | |
|   }
 | |
| }
 |