mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
17 lines
331 B
Swift
17 lines
331 B
Swift
// RUN: %target-swift-ide-test -code-completion -code-completion-token=A -source-filename=%s
|
|
|
|
// https://github.com/apple/swift/issues/47137
|
|
|
|
protocol MyDelegate: AnyObject {
|
|
func mySweetDelegateFunction()
|
|
}
|
|
|
|
class Foo {
|
|
weak var delegate: MyDelegate?
|
|
|
|
func bar() {
|
|
self.delegate.#^A^#
|
|
// ^--- type "." here -> crash
|
|
}
|
|
}
|