Files
swift-mirror/test/IDE/complete_rdar133460404.swift
2024-08-13 15:28:53 +01:00

12 lines
257 B
Swift

// RUN: %batch-code-completion
// rdar://133460404 - Make sure we complete for the rebound local variable.
func bar() {
var foo: Int?
if let foo = foo {
let foo = ""
#^COMPLETE^#
}
}
// COMPLETE: Decl[LocalVar]/Local: foo[#String#]; name=foo