File: test.go.in

package info (click to toggle)
gocode 0~git20140530-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 760 kB
  • ctags: 492
  • sloc: lisp: 212; tcl: 60; python: 55; sh: 50; ruby: 46; makefile: 9
file content (13 lines) | stat: -rw-r--r-- 167 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
package main

var A = struct { a, b, c int }{1,2,3}
var B struct { d, e, f int }

func main() {
	C := struct { g, h, i int }{1,2,3}

	a := A.a
	d := B.d
	g := C.g
	
}