fix PsiCheckerTestGenerated according to removed "property with backing field" highlighting

This commit is contained in:
Dmitry Jemerov
2016-05-25 20:10:01 +02:00
parent 14559bfae0
commit b37ac4f783
4 changed files with 11 additions and 11 deletions
@@ -11,14 +11,14 @@ class Delegate(<warning>d</warning>: Int) {
}
class A(y: Int, t: Int, d: Int): T <info>by</info> T1(t) {
val <info>a</info> = y
val a = y
val b <info>by</info> Delegate(d)
}
class A2<T>(x: Int, y: Int, t: T) {
val <info>t1</info>: T = t
val t1: T = t
val <info>x1</info> = run { x }
val x1 = run { x }
<info>init</info> {
run {
y
@@ -37,7 +37,7 @@ class B(
) {
<info>init</info> {
class C(<warning>a</warning>: Int = <info>x</info>): T <info>by</info> T1(<info>t</info>) {
val <info>a</info> = <info>y</info>
val a = <info>y</info>
val b <info>by</info> Delegate(<info>d</info>)
}
}
@@ -45,7 +45,7 @@ class B(
class B2(<info descr="Value captured in a closure">x</info>: Int, <info descr="Value captured in a closure">y</info>: Int) {
val <info>x1</info> = { <info>x</info> }()
val x1 = { <info>x</info> }()
<info>init</info> {
{
<info>y</info>