mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
17 lines
323 B
Swift
17 lines
323 B
Swift
// RUN: %batch-code-completion
|
|
|
|
public protocol BaseProtocol {}
|
|
|
|
extension BaseProtocol {
|
|
var indexInParent: Int {
|
|
1
|
|
}
|
|
}
|
|
|
|
public protocol InheritedProtocol: BaseProtocol {}
|
|
|
|
extension InheritedProtocol {
|
|
#^COMPLETE^#
|
|
// COMPLETE: Decl[InstanceVar]/Super: var indexInParent: Int; name=indexInParent
|
|
}
|