summaryrefslogtreecommitdiffstats
path: root/misc/cgo/testshared/testdata/dep3/dep3.go
blob: 6b02ad2ee5b97dae33373421c6bd8c3b8f616623 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package dep3

// The point of this test file is that it references a type from
// depBase that is also referenced in dep2, but dep2 is loaded by the
// linker before depBase (because it is earlier in the import list).
// There was a bug in the linker where it would not correctly read out
// the type data in this case and later crash.

import (
	"testshared/dep2"
	"testshared/depBase"
)

type Dep3 struct {
	dep  depBase.Dep
	dep2 dep2.Dep2
}

func D3() int {
	var x Dep3
	return x.dep.X + x.dep2.X
}