From e1d94d2d0c846a3ad91c800e02121a49b3fd6147 Mon Sep 17 00:00:00 2001 From: Stepan Koltsov Date: Sun, 6 Nov 2011 02:02:50 +0400 Subject: [PATCH] fix LValueAssignment.jet test (unnecessary wrong overload) --- .../testData/checkerWithErrorTypes/quick/LValueAssignment.jet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/testData/checkerWithErrorTypes/quick/LValueAssignment.jet b/compiler/testData/checkerWithErrorTypes/quick/LValueAssignment.jet index a5e989ec001..6a34ccb49fb 100644 --- a/compiler/testData/checkerWithErrorTypes/quick/LValueAssignment.jet +++ b/compiler/testData/checkerWithErrorTypes/quick/LValueAssignment.jet @@ -17,7 +17,7 @@ class C() : B() { getInt() = 12 } - fun foo(c: C) { + fun bar(c: C) { this = c //should be an error } }