Post #2103272
2026-05-06 19:21 UTC
My god the predictive code completion model in #Xcode is bad. It hallucinated a parameter to a parameterless function I just wrote.
On a class called `Config` I have
```swift
func transitions() -> [Transition] {
…
```
Then in another class I wrote:
```swift
let transitions =
```
And it autocompleted to
```swift
let transitions = config.transitions(for: config.countdown)
```
WTF Xcode. At least `countdown` is an actual property on Config, but WTF.
Replies (0)
No replies.