public static class Test
{
	public static bool Run()
	{
		int s = 0;
		{
			{
				{
					int i = 2;
					s += i;
				}
				{
					int i = 3; //FAIL: py swift TODO
					s += i;
				}
			}
			return s == 5;
		}
	}
}