I have a simple import from java.lang at the top of my file:
import java.lang {UnsupportedOperationException}
As expected, I get this error:
Package not found in imported modules:
java.lang (add module import to module descriptor of hello)
However, I have tried adding each the following to the body of module.ceylon
no avail:
import java.lang; // needs a version
import java.lang "7"; // not found
import java.lang "1.7.0"; // still not found