.gitignore added
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / honnef.co / go / tools@v0.1.1 / unused / testdata / src / tests-main / main_test.go
1 package main
2
3 import (
4         "testing"
5 )
6
7 type t1 struct{} // used_test
8
9 func TestFoo(t *testing.T) { // used_test
10         _ = t1{}
11 }