Add tests for KT-26141 (yet without changes)
This commit is contained in:
+6
@@ -0,0 +1,6 @@
|
||||
package p
|
||||
|
||||
expect sealed class Presence {
|
||||
object Online: Presence
|
||||
object Offline: Presence
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
// !CHECK_HIGHLIGHTING
|
||||
package p
|
||||
|
||||
actual typealias Presence = P
|
||||
sealed class P {
|
||||
object Online : P()
|
||||
object Offline : P()
|
||||
}
|
||||
Reference in New Issue
Block a user