Files
kotlin-fork/compiler/testData/compileKotlinAgainstCustomBinaries/classFromJdkInLibrary/source.kt
T
Alexander Udalov d4b5032810 Add JDK roots to the beginning of the roots list
This behavior was used until 6a1b6d10d8, where the JDK has
unintentionally started to be added to the end of the list, breaking
code which depended on libraries which bundle something from the JDK

 #KT-21299 Fixed
2017-11-29 11:49:48 +01:00

6 lines
77 B
Kotlin
Vendored

import java.util.Date
fun foo() {
Date.methodWhichDoesNotExistInJdk()
}