| // 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.extends_ |
| // IsArray: IsArray.no |
| // Member: Member.constructor |
| // MemberGenerics: MemberGenerics.oneParam |
| // MemberModifier: MemberModifier.none |
| // MemberName: MemberName.any |
| // MemberNullability: MemberNullability.none |
| // MemberType: MemberType.double_ |
| // NestedKind: NestedKind.record |
| // ParamCount: ParamCount.two |
| // TopLevelKind: TopLevelKind.class_ |
| // TopLevelModifier: TopLevelModifier.final_ |
| public final class TestClass050 extends GrandParent { |
| @Override |
| public void grandParentMethod() {} |
| public <@NotNull S> TestClass050(double p1, int p2) {} |
| public static record NestedRecord(int x) {} |
| |
| } |