lab.nexedi.com/kirr/go123@v0.0.0-20240207185015-8299741fa871/tracing/cmd/gotrace/testdata/src/b/pkg2/pkg2.go (about)

     1  package pkg2
     2  
     3  // trace-import another package
     4  // NOTE "a/pkg1" is not regularly imported
     5  //trace:import "a/pkg1"
     6  
     7  // additional tracepoint which pkg2 defines
     8  //trace:event traceDoSomething(i, j int, q string)
     9  
    10  func DoSomething(i, j int, q string) {
    11  	traceDoSomething(i, j, q)
    12  }