Files
kotlin-fork/j2k/tests/testData/ast/issues/comments.ide.kt
T
Pavel V. Talanov bf4e27b152 Converter:
Classes are final by default in plugin mode
2013-12-22 15:53:19 +04:00

17 lines
270 B
Kotlin

// This is an end-of-line comment
/*
This is a block comment
*/
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 */
}
}