mirror of
https://github.com/github/codeql.git
synced 2026-03-04 22:56:47 +01:00
We no longer need the platform-specific directories, so simplify the test organization. If you want to retain the `linux` directory for two tests, or not do this at all, just skip merging this PR. It's purely optional.
13 lines
120 B
Go
13 lines
120 B
Go
package makesample
|
|
|
|
import (
|
|
"golang.org/x/net/ipv4"
|
|
)
|
|
|
|
func test() {
|
|
|
|
header := ipv4.Header{}
|
|
header.Version = 4
|
|
|
|
}
|