lvc/japi-compliance-checker

Methods added to interfaces are not reported as source incompatibility if interface did not contain methods in old version

SgtSilvio opened this issue · 0 comments

Old version

interface A {
}

New version

interface A {
    void test();
}