mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 12:34:00 +07:00
GitOrigin-RevId: 132eab2bc3bc9c4f6995a29796d8596b6e4a3c5c
18 lines
370 B
Java
18 lines
370 B
Java
package org.example;
|
|
|
|
import org.jspecify.annotations.NullMarked;
|
|
|
|
class SimpleArrayTest {
|
|
static class Container {
|
|
@NullMarked
|
|
abstract static class ArraySameType {
|
|
interface Lib<T> {
|
|
T get();
|
|
}
|
|
|
|
abstract void useArray(Lib<Object[]> l); //not expected
|
|
|
|
abstract Lib<? extends String[][]> useArray2(); //not expected
|
|
}
|
|
}
|
|
} |