* I have a question about precompiling. With this code, I assumed the compiled class would have implemented the BiFunction interface, but it doesn't (using JRuby 9.2.11.1). ``` require 'java' class Coalesce include java.util.function.BiFunction def apply(t, u) t || u end end ```