-
Notifications
You must be signed in to change notification settings - Fork 18.5k
Closed
Labels
Description
Before filing a bug, please check whether it has been fixed since
the latest release: run "hg pull -u" and retry what you did to
reproduce the problem. Thanks.
What steps will reproduce the problem?
1. cat <<EOF > code.go
package main
import "regexp"
func main() {
regexp.MustCompile("STRING\\(.*?\\) STRING\\(.*?\\)");
}
EOF
2. Build and run
What is the expected output? What do you see instead?
This would be expected to build and run properly (with no output of
course).
Instead, the following runtime error occurs.
What is your $GOOS? $GOARCH?
linux
386
Which revision are you using? (hg identify)
cf1a9b1f9bee+ tip
Please provide any additional information below.
I have created a simple fix and submitted the change for review.