fails:String#scan scans for occurrences of the string if pattern is a string
fails:String#scan sets $~ to MatchData of last match and nil when there's none
fails:String#scan tries to convert pattern to a string via to_str
fails:String#scan raises a TypeError if pattern isn't a Regexp and can't be converted to a String
fails:String#scan taints the results if the String argument is tainted
fails:String#scan taints the results when passed a String argument if self is tainted
fails:String#scan taints the results if the Regexp argument is tainted
fails:String#scan taints the results when passed a Regexp argument if self is tainted
fails:String#scan with pattern and block sets $~ for access from the block
fails:String#scan with pattern and block restores $~ after leaving the block
fails:String#scan with pattern and block sets $~ to MatchData of last match and nil when there's none for access from outside
fails:String#scan with pattern and block taints the results if the String argument is tainted
fails:String#scan with pattern and block taints the results when passed a String argument if self is tainted
fails:String#scan with pattern and block taints the results if the Regexp argument is tainted
fails:String#scan with pattern and block taints the results when passed a Regexp argument if self is tainted
