You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
367 B
8 lines
367 B
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.
|