blob: bd48216cc2e30d63e0a658e842d8dac8096bab74 [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.diamond
// IsArray: IsArray.no
// Member: Member.method
// MemberGenerics: MemberGenerics.upperBound
// MemberModifier: MemberModifier.abstract_
// MemberName: MemberName.getFoo
// MemberNullability: MemberNullability.none
// MemberType: MemberType.nestedCustom
// NestedKind: NestedKind.none
// ParamCount: ParamCount.one
// TopLevelKind: TopLevelKind.interface
// TopLevelModifier: TopLevelModifier.none
public abstract interface TestClass060<@NotNull T> extends DiamondLeft, DiamondRight {
@Override
default void baseMethod() {}
@Override
default void leftMethod() {}
@Override
default void rightMethod() {}
<@NotNull S extends Number> NestedCustom<@NotNull S, @NotNull S>.Nested<@NotNull S> getFoo(NestedCustom<@NotNull S, @NotNull S>.Nested<@NotNull S> p1);
}