From 9f7656f3281c2a4c6e0bfb1a81c933d1a2934448 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Thu, 2 Jun 2022 19:02:34 +0300 Subject: [PATCH] ci: vfmt vlib/v/checker/check_types.v --- vlib/v/checker/check_types.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/checker/check_types.v b/vlib/v/checker/check_types.v index 2eba5206e0..4da2b45059 100644 --- a/vlib/v/checker/check_types.v +++ b/vlib/v/checker/check_types.v @@ -242,7 +242,7 @@ pub fn (mut c Checker) check_expected_call_arg(got ast.Type, expected_ ast.Type, } else { got_typ_sym := c.table.sym(got) expected_typ_sym := c.table.sym(expected_) - + // Check on Generics types, there are some case where we have the following case // `&Type == &Type<>`. This is a common case we are implementing a function // with generic parameters like `compare(bst Bst node) {}`