From 232d1cac7bf96a5b82b74f320f3045d830892759 Mon Sep 17 00:00:00 2001 From: Andrey Breslav Date: Mon, 19 Aug 2013 16:49:20 +0400 Subject: [PATCH] Recursive generics fixed --- .../jet/lang/resolve/calls/context/CallResolutionContext.java | 2 +- .../jet/lang/resolve/calls/context/ResolutionContext.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/frontend/src/org/jetbrains/jet/lang/resolve/calls/context/CallResolutionContext.java b/compiler/frontend/src/org/jetbrains/jet/lang/resolve/calls/context/CallResolutionContext.java index 9df3b445dd7..a25c8334a7d 100644 --- a/compiler/frontend/src/org/jetbrains/jet/lang/resolve/calls/context/CallResolutionContext.java +++ b/compiler/frontend/src/org/jetbrains/jet/lang/resolve/calls/context/CallResolutionContext.java @@ -23,7 +23,7 @@ import org.jetbrains.jet.lang.resolve.calls.autocasts.DataFlowInfo; import org.jetbrains.jet.lang.resolve.scopes.JetScope; import org.jetbrains.jet.lang.types.JetType; -public abstract class CallResolutionContext extends ResolutionContext { +public abstract class CallResolutionContext> extends ResolutionContext { public final Call call; public final ResolveMode resolveMode; public final CheckValueArgumentsMode checkArguments; diff --git a/compiler/frontend/src/org/jetbrains/jet/lang/resolve/calls/context/ResolutionContext.java b/compiler/frontend/src/org/jetbrains/jet/lang/resolve/calls/context/ResolutionContext.java index 17cefefaa70..6947b0110c4 100644 --- a/compiler/frontend/src/org/jetbrains/jet/lang/resolve/calls/context/ResolutionContext.java +++ b/compiler/frontend/src/org/jetbrains/jet/lang/resolve/calls/context/ResolutionContext.java @@ -24,7 +24,7 @@ import org.jetbrains.jet.lang.resolve.scopes.JetScope; import org.jetbrains.jet.lang.types.JetType; import org.jetbrains.jet.lang.types.TypeUtils; -public abstract class ResolutionContext { +public abstract class ResolutionContext> { public final BindingTrace trace; public final JetScope scope; public final JetType expectedType;