aboutsummaryrefslogtreecommitdiff
path: root/tests/core/go_test/external_importmap_dep.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/core/go_test/external_importmap_dep.go')
-rw-r--r--tests/core/go_test/external_importmap_dep.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/core/go_test/external_importmap_dep.go b/tests/core/go_test/external_importmap_dep.go
new file mode 100644
index 00000000..c9990774
--- /dev/null
+++ b/tests/core/go_test/external_importmap_dep.go
@@ -0,0 +1,11 @@
+package external_importmap_dep
+
+import (
+ "github.com/bazelbuild/rules_go/tests/core/go_test/external_importmap"
+)
+
+type Impl struct{}
+
+func (_ *Impl) DeepCopyObject() external_importmap.Object {
+ return nil
+}