diff options
author | Ayke van Laethem <[email protected]> | 2018-09-25 14:24:44 +0200 |
---|---|---|
committer | Ayke van Laethem <[email protected]> | 2018-09-25 14:24:44 +0200 |
commit | 4731f2f78783d25d2d5bfcd243a725d867ae7ffb (patch) | |
tree | 8df00bb9e5eeb6e49b956801362b6dc6a2af20be /testdata/print.go | |
parent | 12fb4f3f91a10d7b6c8af0bda4a41cac34af5395 (diff) | |
download | tinygo-4731f2f78783d25d2d5bfcd243a725d867ae7ffb.tar.gz tinygo-4731f2f78783d25d2d5bfcd243a725d867ae7ffb.zip |
testdata: add better tests for struct expanding
Diffstat (limited to 'testdata/print.go')
-rw-r--r-- | testdata/print.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/testdata/print.go b/testdata/print.go index 39c951afa..a8d2ada66 100644 --- a/testdata/print.go +++ b/testdata/print.go @@ -29,6 +29,9 @@ func main() { // print float64 println(3.14) + // print interface + println(interface{}(nil)) + // print map println(map[string]int{"three": 3, "five": 5}) |