Files
swift-mirror/test/IDE/Inputs/multiple-files-2.swift
Argyrios Kyrtzidis 9f8641f90e [IDE/CodeCompletion] Fix crash when picking up declarations from the protocol conformances
of a type declared in a non-primary source file.

rdar://18583883

Swift SVN r22689
2014-10-11 05:07:38 +00:00

11 lines
179 B
Swift

protocol FooProt {
var instanceVar: Int { get }
}
struct FooStruct : FooProt {
var instanceVar: Int = 17
func instanceFunc0() {}
private func privateFunc_ERROR() {}
}