diff --git a/compiler/testData/checkerWithErrorTypes/quick/backingField/CustomGetValGlobal.jet b/compiler/testData/checkerWithErrorTypes/quick/backingField/CustomGetValGlobal.jet new file mode 100644 index 00000000000..6962636adec --- /dev/null +++ b/compiler/testData/checkerWithErrorTypes/quick/backingField/CustomGetValGlobal.jet @@ -0,0 +1,5 @@ +namespace customGetValGlobal { + val zz = 1 + get() = $zz * 2 + +} diff --git a/compiler/testData/checkerWithErrorTypes/quick/backingField/ReadNonexistentAbstractPropertyInAnonymous.jet b/compiler/testData/checkerWithErrorTypes/quick/backingField/ReadNonexistentAbstractPropertyInAnonymous.jet new file mode 100644 index 00000000000..31ecbc026b3 --- /dev/null +++ b/compiler/testData/checkerWithErrorTypes/quick/backingField/ReadNonexistentAbstractPropertyInAnonymous.jet @@ -0,0 +1,7 @@ +abstract class ReadNonexistent() { + abstract val aa: Int + + { + val x = $aa + } +}