test82
auto test82 = 
q{--- test82
	// Bug
	void test()
	{
		for (u32 roomIndex = 0; roomIndex < 20; ++roomIndex)
		{
			for (u32 otherRoom = 0; otherRoom < roomIndex; ++otherRoom)
			{
				if (otherRoom < roomIndex) {
					break;
				}
			}
		}
	}
};
  
		tests passing 
		functionsvariables