Linked-List: constructor NewLinkedListA() accepts any type of int and float

This commit is contained in:
2026-05-18 06:24:59 +02:00
parent 84b255a51b
commit a8a5d6aaa6
2 changed files with 33 additions and 1 deletions
+1 -1
View File
@@ -70,7 +70,7 @@ func TestLinkedListParser(t *testing.T) {
section := "Linked-List"
inputs := []inputType{
/* 1 */ {`[<1,2>]`, kern.NewLinkedListA(int64(1), int64(2)), nil},
/* 1 */ {`[<1,2>]`, kern.NewLinkedListA(1, 2), nil},
}
// t.Setenv("EXPR_PATH", ".")