For the code
interface Test {
fun foo()
fun bar() {}
}
The Javadoc format generates the abstract method as abstract and the default method as just a normal method:
However, in real Javadoc, it should be the opposite; i.e., the abstract method should render normally and the default method have a default:
