Merge remote branch 'origin/master'

This commit is contained in:
Andrey Breslav
2011-05-13 15:57:01 +04:00
11 changed files with 140 additions and 20 deletions
@@ -0,0 +1,4 @@
class Point() {
}
fun foo() = new Point()
@@ -0,0 +1,7 @@
class Point() {
}
fun foo() {
val p = new Point();
return typeof(p);
}