b031e34f8d
Before this commit, enum / sealed class to add was not imported so user had to import them himself. Now everything is auto-imported. Separate "add with import" is kept but * import is now in mind there. #KT-22330 Fixed #KT-22354 Fixed EA-108090 Fixed
5 lines
91 B
Kotlin
Vendored
5 lines
91 B
Kotlin
Vendored
package e
|
|
|
|
enum class OwnEnum { RED, GREEN, BLUE }
|
|
|
|
fun getOwnEnum(): OwnEnum = OwnEnum.RED |