| // 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.none |
| // Inheritance: Inheritance.none |
| // IsArray: IsArray.no |
| // Member: Member.method |
| // MemberGenerics: MemberGenerics.twoParams |
| // MemberModifier: MemberModifier.static_ |
| // MemberName: MemberName.setFoo |
| // MemberNullability: MemberNullability.none |
| // MemberType: MemberType.void_ |
| // NestedKind: NestedKind.innerClass |
| // ParamCount: ParamCount.zero |
| // TopLevelKind: TopLevelKind.class_ |
| // TopLevelModifier: TopLevelModifier.none |
| public class TestClass063 { |
| public static <@Nullable S, @Nullable V> void setFoo() { } |
| public class Nested {} |
| |
| } |