github.com/amarpal/go-tools@v0.0.0-20240422043104-40142f59f616/unused/testdata/src/example.com/tests-main/main_test.go (about)

     1  package main
     2  
     3  import (
     4  	"testing"
     5  )
     6  
     7  type t1 struct{} //@ used_test("t1", true)
     8  
     9  func TestFoo(t *testing.T) { //@ used_test("TestFoo", true), used_test("t", true)
    10  	_ = t1{}
    11  }