OXIESEC PANEL
- Current Dir:
/
/
opt
/
golang
/
1.19.4
/
test
/
syntax
Server IP: 191.96.63.230
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
12/01/2022 06:13:56 PM
rwxr-xr-x
📄
chan.go
492 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
chan1.go
384 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
composite.go
304 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
ddd.go
267 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
else.go
306 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
if.go
304 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
import.go
243 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
initvar.go
467 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
semi1.go
301 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
semi2.go
280 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
semi3.go
305 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
semi4.go
360 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
semi5.go
262 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
semi6.go
299 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
semi7.go
329 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
topexpr.go
502 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
typesw.go
318 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
vareq.go
313 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
vareq1.go
361 bytes
12/01/2022 06:13:01 PM
rw-r--r--
Editing: topexpr.go
Close
// errorcheck // Copyright 2010 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 fmt.Printf("hello") // ERROR "non-declaration statement outside function body|expected declaration" func main() { } x++ // ERROR "non-declaration statement outside function body|expected declaration" func init() { } x,y := 1, 2 // ERROR "non-declaration statement outside function body|expected declaration"