1 /* 2 * Copyright 2020 The JSpecify Authors. 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 import org.jspecify.annotations.NullMarked; 17 import org.jspecify.annotations.Nullable; 18 import org.jspecify.annotations.NullnessUnspecified; 19 20 @NullMarked 21 class MultiBoundTypeVariableUnspecToSelfUnspec { x0(@ullnessUnspecified T x)22 <T extends Object & Lib> @NullnessUnspecified T x0(@NullnessUnspecified T x) { 23 // jspecify_nullness_not_enough_information 24 return x; 25 } 26 x1( @ullnessUnspecified T x)27 <T extends Object & @NullnessUnspecified Lib> @NullnessUnspecified T x1( 28 @NullnessUnspecified T x) { 29 // jspecify_nullness_not_enough_information 30 return x; 31 } 32 x2(@ullnessUnspecified T x)33 <T extends Object & @Nullable Lib> @NullnessUnspecified T x2(@NullnessUnspecified T x) { 34 // jspecify_nullness_not_enough_information 35 return x; 36 } 37 x3( @ullnessUnspecified T x)38 <T extends @NullnessUnspecified Object & Lib> @NullnessUnspecified T x3( 39 @NullnessUnspecified T x) { 40 // jspecify_nullness_not_enough_information 41 return x; 42 } 43 x4( @ullnessUnspecified T x)44 <T extends @NullnessUnspecified Object & @NullnessUnspecified Lib> @NullnessUnspecified T x4( 45 @NullnessUnspecified T x) { 46 // jspecify_nullness_not_enough_information 47 return x; 48 } 49 x5( @ullnessUnspecified T x)50 <T extends @NullnessUnspecified Object & @Nullable Lib> @NullnessUnspecified T x5( 51 @NullnessUnspecified T x) { 52 // jspecify_nullness_not_enough_information 53 return x; 54 } 55 x6(@ullnessUnspecified T x)56 <T extends @Nullable Object & Lib> @NullnessUnspecified T x6(@NullnessUnspecified T x) { 57 // jspecify_nullness_not_enough_information 58 return x; 59 } 60 x7( @ullnessUnspecified T x)61 <T extends @Nullable Object & @NullnessUnspecified Lib> @NullnessUnspecified T x7( 62 @NullnessUnspecified T x) { 63 // jspecify_nullness_not_enough_information 64 return x; 65 } 66 x8(@ullnessUnspecified T x)67 <T extends @Nullable Object & @Nullable Lib> @NullnessUnspecified T x8(@NullnessUnspecified T x) { 68 // jspecify_nullness_not_enough_information 69 return x; 70 } 71 72 interface Lib {} 73 } 74