7 lines
91 B
Plaintext
7 lines
91 B
Plaintext
fun doSomething<T>(a: T) {}
|
|
|
|
fun foo() {
|
|
//comment
|
|
if (true) doSomething("test")
|
|
}
|