sdeleuze
02/18/2017, 8:51 AM./gradlew bootRun
its workssdeleuze
02/18/2017, 9:02 AMsdeleuze
02/18/2017, 9:04 AM<https://repo.gradle.org/gradle/dist-snapshots/gradle-script-kotlin-3.5-20170217174236+0000-all.zip>
created yesterdat by @bambooorangy
Eugenio
02/19/2017, 4:07 PMprovideDelegate
, can anyone from JB take a look at this? It would be awesome if this could be fixed before shipping 1.1!
https://youtrack.jetbrains.com/issue/KT-16441orangy
Eugenio
02/19/2017, 10:16 PMEugenio
02/20/2017, 1:54 PMsdeleuze
02/20/2017, 3:17 PMjava.lang.NoClassDefFoundError: kotlin/jvm/internal/Intrinsics
I reported? I would like to be sure our users will be able to run Kotlin + Spring apps in IDEA.udalov
sdeleuze
02/20/2017, 4:58 PMsdeleuze
02/20/2017, 4:59 PM.idea
and reimport the project but same issuesdeleuze
02/20/2017, 5:00 PMsdeleuze
02/20/2017, 5:00 PMsdeleuze
02/20/2017, 5:00 PMsdeleuze
02/20/2017, 5:13 PMsdeleuze
02/20/2017, 5:13 PMilya.gorbunov
02/20/2017, 5:23 PMsdeleuze
02/20/2017, 5:29 PMEugenio
02/20/2017, 6:02 PMPaul Woitaschek
02/21/2017, 3:29 PMPaul Woitaschek
02/21/2017, 3:29 PMPaul Woitaschek
02/21/2017, 3:31 PMyole
02/21/2017, 3:34 PMsealed class Seal(val b: String) {
data class A(val a: String, b: String) : Seal(b)
}
Paul Woitaschek
02/21/2017, 3:35 PMPaul Woitaschek
02/21/2017, 3:35 PMData class primary constructor must have only property parameters
miha-x64
02/21/2017, 3:39 PMsealed class Seal {
abstract val b: String
data class A(val a: String, override val b: String) : Seal()
}
Paul Woitaschek
02/21/2017, 3:41 PMPaul Woitaschek
02/21/2017, 3:44 PM