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