class A {
  constructor() /* primary */ {
    super/*Any*/()
    /* <init>() */

  }

  val test_1: Int
    field = try { // BLOCK
      throw RuntimeException()
    }
    catch (e: Exception){ // BLOCK
      1
    }

    get

  val test_2: Int
    field = try { // BLOCK
      1
    }
    catch (e: Exception){ // BLOCK
      throw RuntimeException()
    }

    get

}

