aboutsummaryrefslogtreecommitdiff
path: root/tests/core/go_test/external_importmap_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/core/go_test/external_importmap_test.go')
-rw-r--r--tests/core/go_test/external_importmap_test.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/core/go_test/external_importmap_test.go b/tests/core/go_test/external_importmap_test.go
new file mode 100644
index 00000000..fbcc55ef
--- /dev/null
+++ b/tests/core/go_test/external_importmap_test.go
@@ -0,0 +1,10 @@
+package external_importmap_test
+
+import (
+ "github.com/bazelbuild/rules_go/tests/core/go_test/external_importmap"
+ "github.com/bazelbuild/rules_go/tests/core/go_test/external_importmap_dep"
+)
+
+var _ external_importmap.Object = &external_importmap_dep.Impl{}
+
+// Test passes if it compiles.