blob: 67dd5fb7e0f2aad7586796df61320bd9c00f47a7 [file] [log] [blame]
protocol FooProt {
var instanceVar: Int { get }
}
struct FooStruct : FooProt {
var instanceVar: Int = 17
func instanceFunc0() {}
private func privateFunc_ERROR() {}
}