Угадайте, что выведет программа.

func test()
{
  print("AAA")

  return

  autoreleasepool {
    print("BBB")
  }
}

test()