Files
kotlin-fork/j2k/tests/testData/ast/issues/comments.kt
T
Pavel V. Talanov 21bc2887d2 Converter:
Omit Unit return type
Refactor handling of Unit type: extract separate object UnitType
2013-12-22 15:53:14 +04:00

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 */
}
}