3508bea391
(cherry picked from commit 48a1853)
17 lines
285 B
Plaintext
Vendored
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
|
|
}
|
|
} |