xref: /aosp_15_r20/art/test/2032-default-method-private-override/info.txt (revision 795d594fd825385562da6b089ea9b2033f3abf5a)
1Regression test for b/152199517
2
3We would incorrectly search all declared methods of a class for interface
4implementations instead of restricting ourselves to virtual methods when
5looking for overrides to a superclasses interfaces. This could cause
6exceptions and incorrect behavior as we might try to use a private or a
7static method as an interface implementation.
8