Skip to content

Commit f13b14b

Browse files
committed
Fix generics-related error in net/netip fuzz tests.
One of the helper functions requires generics to work correctly. Until they are properly supported we have to stub it out. Generics support is tracked in gopherjs#1013.
1 parent b19a3f1 commit f13b14b

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
//go:build js
2+
3+
package netip_test
4+
5+
import "testing"
6+
7+
func checkStringParseRoundTrip(t *testing.T, x interface{}, parse interface{}) {
8+
// TODO(nevkontakte): This function requires generics to function.
9+
// Re-enable after https://github.com/gopherjs/gopherjs/issues/1013 is resolved.
10+
}

0 commit comments

Comments
 (0)