2423b7b62f
Also adds rendering of @Metadata annotations in Kapt3 and Kapt4 tests (currently disabled for a few tests). Co-authored-by: Alexander Udalov <alexander.udalov@jetbrains.com>
17 lines
335 B
Kotlin
Vendored
17 lines
335 B
Kotlin
Vendored
// STRIP_METADATA
|
|
// TODO: Re-enable metadata generation
|
|
|
|
interface Context
|
|
|
|
enum class Result {
|
|
SUCCESS, ERROR
|
|
}
|
|
|
|
abstract class BaseClass(context: Context, num: Int, bool: Boolean) {
|
|
abstract fun doJob(): Result
|
|
}
|
|
|
|
class Inheritor(context: Context) : BaseClass(context, 5, true) {
|
|
override fun doJob() = Result.SUCCESS
|
|
}
|