File: testdata.go

package info (click to toggle)
golang-github-d4l3k-messagediff 1.2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 116 kB
  • sloc: makefile: 2
file content (10 lines) | stat: -rw-r--r-- 116 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
package testdata

type Test struct {
	a int
	b string
}

func MakeTest(a int, b string) Test {
	return Test{a, b}
}