diff --git a/src/schala_lang/typechecking.rs b/src/schala_lang/typechecking.rs index ed0a8ac..46aeae5 100644 --- a/src/schala_lang/typechecking.rs +++ b/src/schala_lang/typechecking.rs @@ -124,12 +124,11 @@ impl TypeContext { None => Err(format!("No binding found for variable: {}", name)), } }, + &Call { ref f, ref arguments } => { + Err(format!("Function type not yet implemented")) + }, /* TupleLiteral(Vec), - Call { - f: Box, - arguments: Vec, - }, Index { indexee: Box, indexers: Vec,