blob: d4cfd547178a9ca1c1c58715131209c8f355fb6e [file] [log] [blame]
fun main() {
// Module java.naming
val b: javax.naming.Binding? = null
println(b)
// Module java.logging
val j: java.util.logging.Filter? = null
println(j)
// Module java.desktop (this module doesn't depend on it)
val s: javax.swing.JFrame? = null
println(s)
}