From 50c7364f6b834176f9e426b686821a0b7ed5a1f5 Mon Sep 17 00:00:00 2001 From: Stepan Koltsov Date: Sat, 12 Nov 2011 16:54:27 +0400 Subject: [PATCH] fix unnecessary wrong overload in test --- .../quick/nullabilityAndAutoCasts/ReceiverNullability.jet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/testData/checkerWithErrorTypes/quick/nullabilityAndAutoCasts/ReceiverNullability.jet b/compiler/testData/checkerWithErrorTypes/quick/nullabilityAndAutoCasts/ReceiverNullability.jet index 3bea190f1d3..64e653f486a 100644 --- a/compiler/testData/checkerWithErrorTypes/quick/nullabilityAndAutoCasts/ReceiverNullability.jet +++ b/compiler/testData/checkerWithErrorTypes/quick/nullabilityAndAutoCasts/ReceiverNullability.jet @@ -29,7 +29,7 @@ fun A.test2() { this?.buzz() // warning } -fun A?.test() { +fun A?.test3() { foo() // error bar() // error buzz()