aboutsummaryrefslogtreecommitdiff
path: root/go/analysis/passes/timeformat/testdata/src/b/b.go
blob: de5690863c9c7c4ac0170509298a07c7385a76f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
package b

type B struct {
}

func Parse(string, string) B {
	return B{}
}

func (b B) Format(string) {
}