hands to int64

This commit is contained in:
Bel LaPointe
2021-03-17 13:36:58 -05:00
parent cc4a19a47c
commit 117250f5c1
4 changed files with 23 additions and 23 deletions

View File

@@ -6,7 +6,7 @@ import (
)
func TestOperationInterface(t *testing.T) {
foo := func(*entity.Game, interface{}) uint64 { return 0 }
foo := func(*entity.Game, interface{}) int64 { return 0 }
var _ Int = foo
bar := func(*entity.Game, interface{}) bool { return false }
var _ Bool = bar