Add test on override with expect in return type

This commit is contained in:
Dmitry Savvinov
2020-09-18 18:58:17 +03:00
parent f8b8f94040
commit 80f4061a3d
4 changed files with 29 additions and 0 deletions
@@ -0,0 +1,9 @@
expect class Expect
interface Base {
fun expectInReturnType(): Expect
fun expectInArgument(e: Expect)
fun Expect.expectInReceiver()
}