### Description ```swift "dispatchWithName".matches(of: /(?!^)(With(?!No)|For|In|At|To)(?=[A-Z])/) ``` returns 0 matches, but [Regexr](https://regexr.com/) shows there should be one match ### Reproduction ```swift "dispatchWithName".matches(of: /(?!^)(With(?!No)|For|In|At|To)(?=[A-Z])/) ``` returns 0 matches ### Expected behavior ```swift "dispatchWithName".matches(of: /(?!^)(With(?!No)|For|In|At|To)(?=[A-Z])/) ``` should return 1 match "With" ### Environment Verified Xcode 16.0 is fine; appeared in Xcode 16.3 ### Additional information _No response_