From 31b049893f9819cc12eca835147cd7996cd2f63d Mon Sep 17 00:00:00 2001 From: Stepan Koltsov Date: Thu, 10 Nov 2011 20:00:26 +0400 Subject: [PATCH] fix wrong test (unnecessary overload) --- .../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 0995252deff..3bea190f1d3 100644 --- a/compiler/testData/checkerWithErrorTypes/quick/nullabilityAndAutoCasts/ReceiverNullability.jet +++ b/compiler/testData/checkerWithErrorTypes/quick/nullabilityAndAutoCasts/ReceiverNullability.jet @@ -15,7 +15,7 @@ fun test(a : A?) { a?.buzz() // warning } -fun A.test() { +fun A.test2() { foo() bar() buzz()