good first issue
Métricas do repositório
- Stars
- (91 stars)
- Métricas de merge de PR
- (Mesclagem média 6d 9h) (25 fundiu PRs em 30d)
Description
Rust (incorrect - returns error)
$ echo "test" | cargo run --quiet -- -n --posix -e 'i\(text'
# Error: sed: <script argument 1>:1:3: error: extra characters after \ at the end of `i' command
# Exit code: 1
GNU (correct)
$ echo "test" | /usr/bin/sed -n --posix -e 'i\(text'
# Output: (text
# Exit code: 0
Bug Found by Fuzzer