Skip to content

Instantly share code, notes, and snippets.

View dbarden's full-sized avatar

Daniel Barden dbarden

View GitHub Profile
@dbarden
dbarden / atest.swift
Last active January 25, 2018 14:11 — forked from anonymous/sourcekitten
protocol TestDelegate: class {
}
protocol TestProtocol {
weak var delegate: TestDelegate? { get }
}
class Test {
weak var delegate: TestDelegate