mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
ensure only inferred types (from method type parameters) are affected GitOrigin-RevId: 8eea25ebd9956b4b405c08a4396c6a4b79a3c952
7 lines
87 B
Java
7 lines
87 B
Java
package a.b;
|
|
import a.*;
|
|
class Foo {
|
|
void m(Outer o){
|
|
Object obj = o.getData();
|
|
}
|
|
} |