File: file.go

package info (click to toggle)
golang-github-kubernetes-gengo 0.0~git20250207.1244d31-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,528 kB
  • sloc: sh: 90; makefile: 29
file content (33 lines) | stat: -rw-r--r-- 400 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package simple

type ExportedString string

type ExportedInt int

type ExportedStruct struct {
	I  int
	PI *int
	S  string
	PS *string
	AI AliasInt
	AS AliasStruct
}

type privateString string

type privateInt int

type privateStruct struct {
	i  int
	pi *int
	s  string
	ps *string
}

type AliasInt = int

type UnderlyingStruct struct {
}
type AliasStruct = UnderlyingStruct

type AliasUnused = int