mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
[tests] test case for IDEA-177643
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
class Test1 {
|
||||
void m(@NotNull String... strings) { }
|
||||
}
|
||||
|
||||
class Test2 {
|
||||
private Test1 t;
|
||||
|
||||
public void m(@NotNull String... strings) {
|
||||
t.m(strings);
|
||||
}
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
class Test1 {
|
||||
void m(@NotNull String... strings) { }
|
||||
}
|
||||
|
||||
class Test2 {
|
||||
private Test1 t;
|
||||
|
||||
<caret>
|
||||
}
|
||||
Reference in New Issue
Block a user