forked from qt-creator/qt-creator
		
	Also drop the unused 'initializer' member from RangeBasedForStatementAST. Change-Id: I078ebbc85cafa643af4bfe62d698bf7de71360e4 Reviewed-by: hjk <qthjk@ovi.com>
		
			
				
	
	
		
			6 lines
		
	
	
		
			103 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			103 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| int main() {
 | |
|     for (int x : {1, 2, 3}) {}
 | |
|     for (int x : foo) ;
 | |
|     for (int& x : array) x += 2;
 | |
| }
 |