mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
# Conflicts: # community/plugins/gradle/src/org/jetbrains/plugins/gradle/service/settings/IdeaGradleProjectSettingsControlBuilder.java GitOrigin-RevId: d931e798108685731bf185f7c2e3221680b8e5a2
12 lines
210 B
Java
12 lines
210 B
Java
class MyTest<T> {
|
|
static void m(Ref<? super String> commentRef) {
|
|
commentRef = coalesce(commentRef, commentRef);
|
|
}
|
|
|
|
static <T> T coalesce(T t1, T t2) {
|
|
return t1;
|
|
}
|
|
|
|
static class Ref<T> { }
|
|
}
|