[FE] Render context receivers for functions, properties, and classes

This commit is contained in:
Anastasiya Shadrina
2021-11-22 20:04:50 +07:00
committed by TeamCityServer
parent 2954c5cc9c
commit 9e2271399e
41 changed files with 97 additions and 72 deletions
@@ -1,8 +1,8 @@
package
public val a: kotlin.Int = 1
public var b: kotlin.Int
public val c: kotlin.Int
context(A) public val a: kotlin.Int = 1
context(B, A) public var b: kotlin.Int
context(B, A) public val c: kotlin.Int
public interface A {
public abstract fun a(): kotlin.Int