Fix build tags that use ! multiple times on one line.
@@ -1,4 +1,6 @@
-//+build !windows !linux !darwin
+//+build !windows
+//+build !linux
+//+build !darwin
package debug_trace
import "base:runtime"
@@ -1,4 +1,5 @@
-//+build !netbsd !openbsd
+//+build !netbsd
+//+build !openbsd
package flags
@@ -1,5 +1,6 @@
//+private
import "core:net"
@@ -1,5 +1,11 @@
-//+build !windows !linux !darwin !freebsd !openbsd !netbsd !haiku
+//+build !freebsd
+//+build !haiku
package testing
/*
@@ -10,7 +10,8 @@
A test suite for `core:net`
*/
package test_core_net
import "core:testing"