21bc2887d2
Omit Unit return type Refactor handling of Unit type: extract separate object UnitType
17 lines
275 B
Kotlin
17 lines
275 B
Kotlin
// This is an end-of-line comment
|
|
/*
|
|
This is a block comment
|
|
*/
|
|
open class C() {
|
|
// This is a class comment
|
|
/**
|
|
* This is a field doc comment.
|
|
*/
|
|
private var i : Int = 0
|
|
/**
|
|
* This is a function doc comment.
|
|
*/
|
|
public open fun foo() {
|
|
/* This is a function comment */
|
|
}
|
|
} |