mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
12 lines
257 B
Swift
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
|