Files
kotlin-fork/idea/testData/intentions/valToObject/withJavaUsage.1.java
T
Kirill Rakhman 8e00af5642 Add intention to convert top level val with object expression to object declaration (#974)
* Add intention to convert top level val with object expression to object
Fixes #KT-14137

* fix intention description
2017-05-08 16:35:03 +03:00

9 lines
118 B
Java
Vendored

// IS_APPLICABLE: false
import test.WithJavaUsageKt
class A {
void b() {
WithJavaUsageKt.getA();
}
}