import-source2.test 206 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 // RUN: env GOPATH=%S/Inputs llgoi < %s | FileCheck %s // Test that importing binary before source works. import "strconv" import "foo" foo.Answer() // CHECK: 42 strconv.FormatBool(true) // CHECK: true