blob: 7d6d790ae8163237757cadb8a0094943d5fdd0c8 [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.none
// Inheritance: Inheritance.diamond
// IsArray: IsArray.yes
// Member: Member.initializer
// MemberGenerics: MemberGenerics.none
// MemberModifier: MemberModifier.static_
// MemberName: MemberName.any
// MemberNullability: MemberNullability.nonnull
// MemberType: MemberType.customInterface
// NestedKind: NestedKind.interface
// ParamCount: ParamCount.zero
// TopLevelKind: TopLevelKind.class_
// TopLevelModifier: TopLevelModifier.none
public class TestClass096 implements DiamondLeft, DiamondRight {
@Override
public void baseMethod() {}
@Override
public void leftMethod() {}
@Override
public void rightMethod() {}
static { }
public static interface Nested {}
}