OXIESEC PANEL
- Current Dir:
/
/
opt
/
golang
/
1.19.4
/
src
/
go
/
internal
/
gcimporter
/
testdata
/
versions
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
12/01/2022 06:13:56 PM
rwxr-xr-x
📄
test.go
918 bytes
12/01/2022 06:12:58 PM
rw-r--r--
📄
test_go1.11_0i.a
2.36 KB
12/01/2022 06:12:58 PM
rw-r--r--
📄
test_go1.11_6b.a
2.37 KB
12/01/2022 06:12:58 PM
rw-r--r--
📄
test_go1.11_999b.a
2.54 KB
12/01/2022 06:12:58 PM
rw-r--r--
📄
test_go1.11_999i.a
2.36 KB
12/01/2022 06:12:58 PM
rw-r--r--
📄
test_go1.7_0.a
1.82 KB
12/01/2022 06:12:58 PM
rw-r--r--
📄
test_go1.7_1.a
2.26 KB
12/01/2022 06:12:58 PM
rw-r--r--
📄
test_go1.8_4.a
1.62 KB
12/01/2022 06:12:58 PM
rw-r--r--
📄
test_go1.8_5.a
1.62 KB
12/01/2022 06:12:58 PM
rw-r--r--
Editing: test.go
Close
// Copyright 2016 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // To create a test case for a new export format version, // build this package with the latest compiler and store // the resulting .a file appropriately named in the versions // directory. The VersionHandling test will pick it up. // // In the testdata/versions: // // go build -o test_go1.$X_$Y.a test.go // // with $X = Go version and $Y = export format version // (add 'b' or 'i' to distinguish between binary and // indexed format starting with 1.11 as long as both // formats are supported). // // Make sure this source is extended such that it exercises // whatever export format change has taken place. package test // Any release before and including Go 1.7 didn't encode // the package for a blank struct field. type BlankField struct { _ int }