diff --git a/compiler/backend/src/org/jetbrains/jet/codegen/ExpressionCodegen.java b/compiler/backend/src/org/jetbrains/jet/codegen/ExpressionCodegen.java index 55f60c98433..f6947e018ba 100644 --- a/compiler/backend/src/org/jetbrains/jet/codegen/ExpressionCodegen.java +++ b/compiler/backend/src/org/jetbrains/jet/codegen/ExpressionCodegen.java @@ -162,7 +162,7 @@ public class ExpressionCodegen extends JetVisitor { @Override public StackValue visitNamedFunction(JetNamedFunction function, StackValue data) { - throw new UnsupportedOperationException("Codegen for named functions is not yet implemented"); + throw new UnsupportedOperationException("Codegen for local functions is not yet implemented"); } @Override