if i have something like: ``` interface MyInterfa...
# random
m
if i have something like:
Copy code
interface MyInterface {
    fun bar()
    fun foo() {
      // optional body
    }
}
using reflection should I expect that from java code calling
fooMethod.isDefault()
(from java.lang.reflect.Method) would be true?