module RuboCop::Cop::RegexpMetacharacter

def literal_at_start?(regexp)

def literal_at_start?(regexp)
  return true if literal_at_start_with_backslash_a?(regexp)
  !safe_multiline? && literal_at_start_with_caret?(regexp)
end