aboutsummaryrefslogtreecommitdiff
path: root/tests/core/starlark/packagedriver/fixtures/c/c.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/core/starlark/packagedriver/fixtures/c/c.go')
-rw-r--r--tests/core/starlark/packagedriver/fixtures/c/c.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/core/starlark/packagedriver/fixtures/c/c.go b/tests/core/starlark/packagedriver/fixtures/c/c.go
new file mode 100644
index 00000000..f8a8dd3b
--- /dev/null
+++ b/tests/core/starlark/packagedriver/fixtures/c/c.go
@@ -0,0 +1,11 @@
+package c
+
+import (
+ "example.com/a"
+ "example.com/b"
+)
+
+func C() {
+ a.A()
+ b.B()
+}