Created
May 19, 2012 08:10
-
-
Save ngsw-taro/2730038 to your computer and use it in GitHub Desktop.
Kotlin's Bug?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fun main(args : Array<String>) { | |
val a = arrayList(1) | |
val b = a + a // OK | |
val c = a + arrayList(1) // Compilation error | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment