hands to uint64

This commit is contained in:
Bel LaPointe
2021-03-17 13:35:48 -05:00
parent 0c406e3163
commit cc4a19a47c
4 changed files with 304 additions and 49 deletions

View File

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