fix cyclic dependency with go modules

This commit is contained in:
Ivan Safonov 2019-03-01 00:22:20 +07:00
parent e17abc4d5d
commit 2fdf5e1752

View File

@ -1,7 +1,9 @@
package simple
// Foo is a test interface
type Foo interface {
FooIt(bar *Bar)
}
// Bar is a test type
type Bar struct{}