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.NullnessUnspecified; 18 19 @NullMarked 20 class UnspecifiedTypeArgumentForNonNullableParameterUseUnspec { 21 interface SupplierWithNonNullableBound<E> { get()22 @NullnessUnspecified E get(); 23 } 24 x0( SupplierWithNonNullableBound<@NullnessUnspecified String> s)25 String x0( 26 // jspecify_nullness_not_enough_information 27 SupplierWithNonNullableBound<@NullnessUnspecified String> s) { 28 // jspecify_nullness_not_enough_information 29 return s.get(); 30 } 31 x1( SupplierWithNonNullableBound<@NullnessUnspecified E> s)32 <E extends String> String x1( 33 // jspecify_nullness_not_enough_information 34 SupplierWithNonNullableBound<@NullnessUnspecified E> s) { 35 // jspecify_nullness_not_enough_information 36 return s.get(); 37 } 38 x2( SupplierWithNonNullableBound<E> s)39 <E extends @NullnessUnspecified String> String x2( 40 // jspecify_nullness_not_enough_information 41 SupplierWithNonNullableBound<E> s) { 42 // jspecify_nullness_not_enough_information 43 return s.get(); 44 } 45 x3( SupplierWithNonNullableBound<@NullnessUnspecified E> s)46 <E extends @NullnessUnspecified String> String x3( 47 // jspecify_nullness_not_enough_information 48 SupplierWithNonNullableBound<@NullnessUnspecified E> s) { 49 // jspecify_nullness_not_enough_information 50 return s.get(); 51 } 52 } 53