Initial commit: Go 1.23 release state
This commit is contained in:
12
test/fixedbugs/issue4326.dir/p1.go
Normal file
12
test/fixedbugs/issue4326.dir/p1.go
Normal file
@@ -0,0 +1,12 @@
|
||||
package p1
|
||||
|
||||
type O map[string]map[string]string
|
||||
|
||||
func (opts O) RemoveOption(sect, opt string) bool {
|
||||
if _, ok := opts[sect]; !ok {
|
||||
return false
|
||||
}
|
||||
_, ok := opts[sect][opt]
|
||||
delete(opts[sect], opt)
|
||||
return ok
|
||||
}
|
||||
Reference in New Issue
Block a user