.gitignore added
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.1.1-0.20210319172145-bda8f5cee399 / go / analysis / passes / printf / testdata / src / nofmt / nofmt.go
1 package b
2
3 import (
4         "math/big"
5         "testing"
6 )
7
8 func formatBigInt(t *testing.T) {
9         t.Logf("%d\n", big.NewInt(4))
10 }