d1958be2a8
(cherry picked from commit 998e39e)
13 lines
250 B
Kotlin
Vendored
13 lines
250 B
Kotlin
Vendored
class WithComments {
|
|
/**
|
|
* A very important property
|
|
*/
|
|
val veryImportant: Any
|
|
|
|
/**
|
|
* A constructor
|
|
*/
|
|
constructor<caret>(/* Some parameter */veryImportant: Any) {
|
|
this.veryImportant = veryImportant
|
|
}
|
|
} |