//! Integration tests for regex features.
//!
//! This module tests core regex features including:
//! - Backreferences
//! - Case-insensitive matching
//! - Lookahead and lookbehind assertions
//! - Named captures
//! - Syntax validation
use Regex;
use RegexBuilder;
/// Creates a Regex with JIT enabled when the `jit` feature is available.