mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
10 lines
240 B
Swift
10 lines
240 B
Swift
// RUN: %swift-ide-test -code-completion -source-filename %s -code-completion-token COMPLETE | %FileCheck %s
|
|
|
|
struct Foo {
|
|
var x: Int = {
|
|
guard let foo = #^COMPLETE^#
|
|
}()
|
|
}
|
|
|
|
// CHECK: Decl[Struct]/CurrModule: Foo[#Foo#];
|