How to import Java packages in Kotlin Native

I'm trying to import Java package for use in Kotlin native as below; /* main.kt */ import java.util.* fun main(args: Array<String>) { print("Simple program") } and compile it with the b...