Sergey Shanshin

Results 56 issues of Sergey Shanshin

For the following `src/Example.kt` ``` class OverloadExample1 @JvmOverloads constructor(name: String = "foo") fun main() { OverloadExample1() OverloadExample1("bar") } ``` execution of ``` kotlin-2.0.21/bin/kotlinc src -d classes java -javaagent:jacoco-0.8.13-SNAPSHOT/lib/jacocoagent.jar -cp classes:kotlin-2.0.21/lib/kotlin-stdlib.jar...

type: bug :bug:
language: Kotlin

For the following `src/Example.kt` ``` class SimpleClass( val text: String ) @JvmInline value class Value( val text: String ) @JvmInline value class ValueWithConstructor( val text: String ) { init {...

type: bug :bug:
language: Kotlin

For the following `src/Example.kt` ``` object Object object ObjectWithInit { init { println("Hello") } } fun main() { Object ObjectWithInit } ``` execution of ``` kotlin-2.0.21/bin/kotlinc src -d classes java...

type: bug :bug:
language: Kotlin

For the following `src/Example.kt` ``` fun functionWithManyParams( x00: Int, x01: Int, x02: Int, x03: Int, x04: Int, x05: Int, x06: Int, x07: Int, x08: Int, x09: Int, x10: Int, x11:...

type: bug :bug:
component: core.filters
language: Kotlin

For the following `src/Example.kt` ``` fun testString(p: String?) = when (p) { "a", "b" -> 1 "c" -> 2 else -> 3 } fun main() { testString("a") testString("b") testString("c") testString("d")...

type: bug :bug:
component: core.filters
language: Kotlin

For the following `src/Example.kt` ``` sealed class SealedClass abstract class AbstractClass class SealedSubClass: SealedClass() class AbstractSubClass: AbstractClass() fun main() { SealedSubClass() AbstractSubClass() } ``` execution of ``` kotlin-2.0.21/bin/kotlinc src -d...

type: bug :bug:
component: core.filters
language: Kotlin