art/test/2032-default-method-private.../info.txt

8 lines
367 B
Plaintext
Raw Permalink Normal View History

2025-08-25 08:21:32 +08:00
Regression test for b/152199517
We would incorrectly search all declared methods of a class for interface
implementations instead of restricting ourselves to virtual methods when
looking for overrides to a superclasses interfaces. This could cause
exceptions and incorrect behavior as we might try to use a private or a
static method as an interface implementation.