Skip to content

Commit 2b79449

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 544341e commit 2b79449

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
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)