summaryrefslogtreecommitdiff
path: root/llgo/test/llgoi/import-source.test
diff options
context:
space:
mode:
Diffstat (limited to 'llgo/test/llgoi/import-source.test')
-rw-r--r--llgo/test/llgoi/import-source.test6
1 files changed, 2 insertions, 4 deletions
diff --git a/llgo/test/llgoi/import-source.test b/llgo/test/llgoi/import-source.test
index b545b52697e..3619fb4ba9a 100644
--- a/llgo/test/llgoi/import-source.test
+++ b/llgo/test/llgoi/import-source.test
@@ -4,17 +4,15 @@
Answer := 1
import "foo"
-// CHECK: # bar
-// CHECK: # foo
// Test that importing binary after source works.
import "strconv"
foo.Answer()
-// CHECK: #0 int = 42
+// CHECK: 42
strconv.FormatBool(true)
-// CHECK: #0 string = true
+// CHECK: true
var v1 strconv.NumError
var v2 strconv.NumError