blob: f0fa91ab5c844fbf140cf6ecde6eef3ef8a141ae [file]
// Copyright (c) 2026, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package com.example;
import java.util.*;
import org.jetbrains.annotations.Nullable;
import org.jetbrains.annotations.NotNull;
// GenericNullability: GenericNullability.nonnull
// Generics: Generics.oneParam
// Inheritance: Inheritance.complexDag
// IsArray: IsArray.yes
// Member: Member.method
// MemberGenerics: MemberGenerics.twoParams
// MemberModifier: MemberModifier.native
// MemberName: MemberName.isFoo
// MemberNullability: MemberNullability.nonnull
// MemberType: MemberType.nestedCustom
// NestedKind: NestedKind.staticClass
// ParamCount: ParamCount.one
// TopLevelKind: TopLevelKind.class_
// TopLevelModifier: TopLevelModifier.final_
public final class TestClass061<@NotNull T> implements DagA, DagD, DagE {
@Override
public void aMethod() {}
@Override
public void bMethod() {}
@Override
public void cMethod() {}
@Override
public void dMethod() {}
@Override
public void eMethod() {}
public native <@NotNull S, @NotNull V> @NotNull NestedCustom<@NotNull S, @NotNull S>.Nested<@NotNull S>[] isFoo(@NotNull NestedCustom<@NotNull S, @NotNull S>.Nested<@NotNull S>[] p1);
public static class Nested {}
}