diff --git a/Upsilon/Binder/Binder.cs b/Upsilon/Binder/Binder.cs index 7d5eb4c..9002407 100644 --- a/Upsilon/Binder/Binder.cs +++ b/Upsilon/Binder/Binder.cs @@ -155,8 +155,7 @@ namespace Upsilon.Binder if (boundExpression.Type != variable.Type) { _diagnostics.LogCannotConvert(boundExpression.Type, variable.Type, e.Span); - throw new NotImplementedException(); - //return boundExpression; + return new BoundExpressionStatement(boundExpression); } }