package main

import "regexp"
import "strings"

func main() {
    regexp.MustCompile(`.*a`).MatchString(strings.Repeat("z", 50000000))
}