Add line marker test for sealed classes #KT-20043 Fixed

This commit is contained in:
Mikhail Glukhikh
2017-10-09 13:23:55 +03:00
parent 4e56fda439
commit 0ebe9d576a
5 changed files with 52 additions and 0 deletions
@@ -0,0 +1,11 @@
// !CHECK_HIGHLIGHTING
expect sealed class Sealed {
object Sealed1 : Sealed
class Sealed2 : Sealed {
val x: Int
fun foo(): String
}
}