Suggestions from expression itself to have higher priority + fixed incorect upper case naming

This commit is contained in:
Valentin Kipyatkov
2015-06-26 22:03:06 +03:00
parent 4a52247ab7
commit db144a6121
35 changed files with 72 additions and 80 deletions
@@ -1,8 +1,8 @@
fun main(args: Array<String>) {
val myA = A()
val i = myA.prop
println(i)
println(i)
val prop = myA.prop
println(prop)
println(prop)
}
class A {