/*
 * Copyright 2020 The JSpecify Authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
import org.jspecify.annotations.NullMarked;
import org.jspecify.annotations.Nullable;
import org.jspecify.annotations.NullnessUnspecified;

@NullMarked
class TypeVariableUnspecToSelf<
    Never1T,
    ChildOfNever1T extends Never1T,
    UnspecChildOfNever1T extends @NullnessUnspecified Never1T,
    NullChildOfNever1T extends @Nullable Never1T,
    //
    Never2T extends Object,
    ChildOfNever2T extends Never2T,
    UnspecChildOfNever2T extends @NullnessUnspecified Never2T,
    NullChildOfNever2T extends @Nullable Never2T,
    //
    UnspecT extends @NullnessUnspecified Object,
    ChildOfUnspecT extends UnspecT,
    UnspecChildOfUnspecT extends @NullnessUnspecified UnspecT,
    NullChildOfUnspecT extends @Nullable UnspecT,
    //
    ParametricT extends @Nullable Object,
    ChildOfParametricT extends ParametricT,
    UnspecChildOfParametricT extends @NullnessUnspecified ParametricT,
    NullChildOfParametricT extends @Nullable ParametricT,
    //
    UnusedT> {
  Never1T x0(@NullnessUnspecified Never1T x) {
    // jspecify_nullness_not_enough_information
    return x;
  }

  ChildOfNever1T x1(@NullnessUnspecified ChildOfNever1T x) {
    // jspecify_nullness_not_enough_information
    return x;
  }

  UnspecChildOfNever1T x2(@NullnessUnspecified UnspecChildOfNever1T x) {
    // jspecify_nullness_not_enough_information
    return x;
  }

  NullChildOfNever1T x3(@NullnessUnspecified NullChildOfNever1T x) {
    // jspecify_nullness_not_enough_information
    return x;
  }

  Never2T x4(@NullnessUnspecified Never2T x) {
    // jspecify_nullness_not_enough_information
    return x;
  }

  ChildOfNever2T x5(@NullnessUnspecified ChildOfNever2T x) {
    // jspecify_nullness_not_enough_information
    return x;
  }

  UnspecChildOfNever2T x6(@NullnessUnspecified UnspecChildOfNever2T x) {
    // jspecify_nullness_not_enough_information
    return x;
  }

  NullChildOfNever2T x7(@NullnessUnspecified NullChildOfNever2T x) {
    // jspecify_nullness_not_enough_information
    return x;
  }

  UnspecT x8(@NullnessUnspecified UnspecT x) {
    // jspecify_nullness_not_enough_information
    return x;
  }

  ChildOfUnspecT x9(@NullnessUnspecified ChildOfUnspecT x) {
    // jspecify_nullness_not_enough_information
    return x;
  }

  UnspecChildOfUnspecT x10(@NullnessUnspecified UnspecChildOfUnspecT x) {
    // jspecify_nullness_not_enough_information
    return x;
  }

  NullChildOfUnspecT x11(@NullnessUnspecified NullChildOfUnspecT x) {
    // jspecify_nullness_not_enough_information
    return x;
  }

  ParametricT x12(@NullnessUnspecified ParametricT x) {
    // jspecify_nullness_not_enough_information
    return x;
  }

  ChildOfParametricT x13(@NullnessUnspecified ChildOfParametricT x) {
    // jspecify_nullness_not_enough_information
    return x;
  }

  UnspecChildOfParametricT x14(@NullnessUnspecified UnspecChildOfParametricT x) {
    // jspecify_nullness_not_enough_information
    return x;
  }

  NullChildOfParametricT x15(@NullnessUnspecified NullChildOfParametricT x) {
    // jspecify_nullness_not_enough_information
    return x;
  }
}
