Files
kotlin-fork/idea/testData/intentions/convertPrimaryConstructorToSecondary/withComments.kt.after
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

17 lines
285 B
Plaintext
Vendored

/**
* An important class
*/
class WithComments
/**
* Some nasty constructor
*/
{/* First parameter */
/* Second Parameter */
val first: Int
val second: Double
constructor(first: Int, second: Double) {
this.first = first
this.second = second
}
}