| // 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.nullable |
| // Generics: Generics.oneParam |
| // Inheritance: Inheritance.diamond |
| // IsArray: IsArray.yes |
| // Member: Member.method |
| // MemberGenerics: MemberGenerics.none |
| // MemberModifier: MemberModifier.none |
| // MemberName: MemberName.getFoo |
| // MemberNullability: MemberNullability.nonnull |
| // MemberType: MemberType.char_ |
| // NestedKind: NestedKind.staticClass |
| // ParamCount: ParamCount.zero |
| // TopLevelKind: TopLevelKind.class_ |
| // TopLevelModifier: TopLevelModifier.none |
| public class TestClass037<@Nullable T> implements DiamondLeft, DiamondRight { |
| @Override |
| public void baseMethod() {} |
| @Override |
| public void leftMethod() {} |
| @Override |
| public void rightMethod() {} |
| public char @NotNull [] getFoo() { return null; } |
| public static class Nested {} |
| |
| } |