Files
kotlin-fork/idea/testData/javaFacade/ea38770.kt
T
Alexander Udalov 38a42bdb79 Do not wrap built-in function in JetLightClass (EA-38770)
Built-in top-level functions are located in jet.namespace class.
JetStandardClasses.isStandardClass() now checks that a given fqName starts with
"jet.", instead of searching it in the standard scope, to prevent this kind of
errors in the future
2012-09-27 16:30:59 +04:00

4 lines
42 B
Kotlin

fun <T> foo() {
T.<caret>toString()
}