Last active
December 21, 2018 05:28
-
-
Save ozcanzaferayan/db35e43364bdaa755f437e80c6e90b17 to your computer and use it in GitHub Desktop.
Kotlin Nedir: raw type kontrolü
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 other: List = listOf('a', 'b', 'c') // Error: One type argument expected for interface List<out E> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment