Skip to content

Instantly share code, notes, and snippets.

@orionll
Created January 17, 2015 00:25
Show Gist options
  • Save orionll/7e5d0f6634ca971091f3 to your computer and use it in GitHub Desktop.
Save orionll/7e5d0f6634ca971091f3 to your computer and use it in GitHub Desktop.
import java.util.ArrayList
fun main(args : Array<String>) {
val a: ArrayList<Int> = ArrayList()
a.add(null) // WTF??
println(a)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment