aboutsummaryrefslogtreecommitdiff
path: root/go/ssa/testdata/src/strconv/strconv.go
diff options
context:
space:
mode:
Diffstat (limited to 'go/ssa/testdata/src/strconv/strconv.go')
-rw-r--r--go/ssa/testdata/src/strconv/strconv.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/go/ssa/testdata/src/strconv/strconv.go b/go/ssa/testdata/src/strconv/strconv.go
new file mode 100644
index 000000000..3f6f8772b
--- /dev/null
+++ b/go/ssa/testdata/src/strconv/strconv.go
@@ -0,0 +1,6 @@
+package strconv
+
+func Itoa(i int) string
+func Atoi(s string) (int, error)
+
+func FormatFloat(float64, byte, int, int) string