blob: 83be71ac353a4362e83ba1d4df911cb97b244752 [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.none
// Generics: Generics.twoParams
// Inheritance: Inheritance.multipleImplements
// IsArray: IsArray.yes
// Member: Member.method
// MemberGenerics: MemberGenerics.twoParams
// MemberModifier: MemberModifier.synchronized
// MemberName: MemberName.any
// MemberNullability: MemberNullability.nullable
// MemberType: MemberType.double_
// NestedKind: NestedKind.enum_
// ParamCount: ParamCount.zero
// TopLevelKind: TopLevelKind.class_
// TopLevelModifier: TopLevelModifier.none
public class TestClass054<T, U> implements OtherInterface, BaseInterface {
@Override
public void otherInterfaceMethod() {}
@Override
public void baseMethod() {}
public synchronized <S, V> double @Nullable [] myMethod() { return null; }
public enum NestedEnum { V1 }
}