Files
kotlin-fork/idea/testData/slicer/inflow/overridingParameter.results.txt
T

9 lines
362 B
Plaintext
Vendored

15 <bold>val y</bold> = b.foo (in test(A, B,…))
15 val y = <bold>b.foo</bold> (in test(A, B,…))
7 open class B(override <bold>val foo: Int</bold>) : A() (in B)
3 super(<bold>10</bold>);
9 class C : B(<bold>1</bold>) { (in C)
7 return <bold>5</bold>;
10 override <bold>val foo</bold> = 3 (in C)
10 override val foo = <bold>3</bold> (in C.foo)