added support for string type
[govpp.git] / vendor / github.com / pkg / profile / trace_test.go
1 package profile_test
2
3 import "github.com/pkg/profile"
4
5 func ExampleTraceProfile() {
6         // use execution tracing, rather than the default cpu profiling.
7         defer profile.Start(profile.TraceProfile).Stop()
8 }