3d8d92c7d3
- test data files renamed from *.jet to *.kt
15 lines
159 B
Kotlin
Vendored
15 lines
159 B
Kotlin
Vendored
//KT-337 Can't break a line before a dot
|
|
|
|
class A() {
|
|
fun foo() {}
|
|
}
|
|
|
|
fun test() {
|
|
val a = A()
|
|
|
|
a
|
|
|
|
.foo() // Should be a valid expression
|
|
|
|
}
|