We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following program fails:
package main import "regexp" func main() { re := regexp.MustCompile("^0^000000$") prefix, complete := re.LiteralPrefix() if complete && !re.MatchString(prefix) { panic("prefix:" + prefix) } }
panic: prefix:0
If LiteralPrefix return complete==true, the re must match the prefix.
go version devel +b0532a9 Mon Jun 8 05:13:15 2015 +0000 linux/amd64
The text was updated successfully, but these errors were encountered:
This one is a real problem.
Sorry, something went wrong.
CL https://golang.org/cl/16200 mentions this issue.
d1eedfe
No branches or pull requests
The following program fails:
If LiteralPrefix return complete==true, the re must match the prefix.
go version devel +b0532a9 Mon Jun 8 05:13:15 2015 +0000 linux/amd64
The text was updated successfully, but these errors were encountered: