Files
kotlin-fork/idea/testData/intentions/convertPrimaryConstructorToSecondary/withComments.kt
T
Mikhail Glukhikh 3508bea391 KT-9839 related, primary constructor to secondary: comment restoration
(cherry picked from commit 48a1853)
2016-09-30 16:39:46 +03:00

12 lines
215 B
Kotlin
Vendored

/**
* An important class
*/
class WithComments
/**
* Some nasty constructor
*/
<caret>constructor(
/* First parameter */
val first: Int,
/* Second Parameter */
val second: Double)