OXIESEC PANEL
- Current Dir:
/
/
opt
/
golang
/
1.22.0
/
test
/
fixedbugs
/
issue31636.dir
Server IP: 191.96.63.230
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/02/2024 06:09:55 PM
rwxr-xr-x
📄
a.go
201 bytes
02/02/2024 06:09:55 PM
rw-r--r--
📄
b.go
201 bytes
02/02/2024 06:09:55 PM
rw-r--r--
📄
c.go
201 bytes
02/02/2024 06:09:55 PM
rw-r--r--
📄
main.go
504 bytes
02/02/2024 06:09:55 PM
rw-r--r--
Editing: main.go
Close
// Copyright 2019 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. package main // We want the initializers of these packages to occur in source code // order. See issue 31636. This is the behavior up to and including // 1.13. For 1.14, we will move to a variant of lexicographic ordering // which will require a change to the test output of this test. import ( _ "./c" _ "./b" _ "./a" ) func main() { }