Skip to content

Instantly share code, notes, and snippets.

@Jimmy-Prime
Created November 4, 2021 02:44
Show Gist options
  • Save Jimmy-Prime/217ee303451306c681ff623985d9078c to your computer and use it in GitHub Desktop.
Save Jimmy-Prime/217ee303451306c681ff623985d9078c to your computer and use it in GitHub Desktop.
protocol P {
func test()
}
private struct Object {
let index: Int
}
extension Object: P {
fileprivate func test() {
print(#function)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment