blob: a19127489dada65f04c13cb451bc7c7aef15602c [file] [log] [blame]
public struct External<A> {
public var property: A
public var intProperty: Int
public subscript<B: Hashable>(index: B) -> A { return property }
}
public struct ExternalEmptySubscript {
public subscript() -> Int { return 0 }
}