forked from mirrors/gecko-dev
		
	 11dd9afb58
			
		
	
	
		11dd9afb58
		
	
	
	
	
		
			
			Differential Revision: https://phabricator.services.mozilla.com/D4210 --HG-- extra : moz-landing-system : lando
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			142 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			142 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| struct B {
 | |
|   B() {}
 | |
|   B(const B&) {}
 | |
|   B(B &&) {}
 | |
| };
 | |
| 
 | |
| struct D : B {
 | |
|   D() : B() {}
 | |
|   D(const D &RHS) : B(RHS) {}
 | |
|   D(D &&RHS) : B(RHS) {}
 | |
| };
 |