3508bea391
(cherry picked from commit 48a1853)
12 lines
215 B
Kotlin
Vendored
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) |