72aa3d1465
- move some of boxWithStdlib tests under fullJdk/ directory, where they will be compiled against the full JDK - introduce FULL_JDK in-text directive for the reflection test as only 4 tests out of 654 needed the full JDK
17 lines
523 B
Kotlin
Vendored
17 lines
523 B
Kotlin
Vendored
import org.w3c.dom.Element
|
|
import org.xml.sax.InputSource
|
|
import javax.xml.parsers.DocumentBuilderFactory
|
|
import java.io.StringReader
|
|
|
|
class MyElement(e: Element): Element by e {
|
|
fun bar() = "OK"
|
|
}
|
|
|
|
fun box() : String {
|
|
val factory = DocumentBuilderFactory.newInstance()!!;
|
|
val builder = factory.newDocumentBuilder()!!;
|
|
val source = InputSource(StringReader("<OK></OK>"));
|
|
val doc = builder.parse(source)!!;
|
|
val myElement = MyElement(doc.getDocumentElement()!!)
|
|
return myElement.getTagName()!!
|
|
} |