...

Text file src/golang.org/x/tools/refactor/eg/testdata/F.template

Documentation: golang.org/x/tools/refactor/eg/testdata

     1package templates
     2
     3// Test
     4
     5import "sync"
     6
     7func before(s sync.RWMutex) { s.Lock() }
     8func after(s sync.RWMutex)  { s.RLock() }

View as plain text