class While{
	method(){
		i;
		i = 0;
		while(i < 10) {
			i++;
		}
		
		while(true){
			s;
			s = "zweiundvierzig";
		}
		
		while(false){
			t;
			t = 42;
		}
	}
}