mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
16 lines
365 B
Java
16 lines
365 B
Java
// "Implement methods" "true-preview"
|
|
package org.jetbrains.annotations;
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
abstract class Test {
|
|
abstract void foo(@NotNull String @NotNull[] data);
|
|
|
|
abstract void foo2(@NotNull String @NotNull ... data);
|
|
}
|
|
|
|
<caret>class TImple extends Test {}
|
|
|
|
@Target({ElementType.PARAMETER, ElementType.TYPE_USE})
|
|
@interface NotNull {}
|