mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 17:07:05 +07:00
assignability to primitive: check type parameter bounds if applicable (IDEA-155551)
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
class Test {
|
||||
<T extends S, S extends Long, K extends Long & Runnable> void method1(T param, S param1, K param2) {
|
||||
long l = param;
|
||||
long l1 = param1;
|
||||
long l2 = param2;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user