Files
kotlin-fork/idea/testData/intentions/removeConstructorKeyword/comments.kt
T
2019-01-24 14:32:21 +03:00

13 lines
200 B
Kotlin
Vendored

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