Files
swift-mirror/test/Serialization/Inputs/multi-file-subclass-generic-instantiation-extension.swift
Harlan Haskins 67683d8884 [Deserialization] Allow lookup into decls that don't have an interface type yet
Fixes rdar://55560962 and https://bugs.swift.org/browse/SR-11495

This bug was caused because we'd fail to lookup C in B, because we
hadn't computed its type yet and therefore B is filtered from lookup.
Just remove the filter for interface type.
2019-09-30 11:24:22 -07:00

4 lines
59 B
Swift

extension Subclass {
struct MemberTypeFromOtherFile {}
}