Java to Kotlin converter: fixed bug

This commit is contained in:
Valentin Kipyatkov
2014-06-23 19:14:42 +04:00
parent 04e2d3da58
commit 07bbab3ea0
5 changed files with 25 additions and 12 deletions
@@ -0,0 +1,8 @@
import org.jetbrains.annotations.Nullable;
//file
class A {
int field = foo();
@Nullable int foo() { return 1; }
}