feat(depinject): resolve interface types (#12169)

This commit is contained in:
Matt Kocubinski
2022-06-09 18:02:54 -05:00
committed by GitHub
parent 907df327ed
commit dd2e432937
22 changed files with 539 additions and 133 deletions
+5 -1
View File
@@ -95,4 +95,8 @@ type keeperB struct {
a KeeperA
}
type KeeperB interface{}
type KeeperB interface {
isKeeperB()
}
func (k keeperB) isKeeperB() {}