blob: 0760d500c4555ed3a11eab8c7a75dad0bd406a1c [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.none
// Inheritance: Inheritance.complexDag
// IsArray: IsArray.yes
// Member: Member.method
// MemberGenerics: MemberGenerics.twoParams
// MemberModifier: MemberModifier.static_
// MemberName: MemberName.any
// MemberNullability: MemberNullability.none
// MemberType: MemberType.short_
// NestedKind: NestedKind.enum_
// ParamCount: ParamCount.zero
// TopLevelKind: TopLevelKind.class_
// TopLevelModifier: TopLevelModifier.none
public class TestClass024 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 static <@NotNull S, @NotNull V> short [] myMethod() { return null; }
public enum NestedEnum { V1 }
}