mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Don’t record a `memberOf` relationship if we couldn’t look up the target, e.g. because the member is declared in an extension whose extended type doesn’t exist. Resolves rdar://74063899
7 lines
167 B
Swift
7 lines
167 B
Swift
// RUN: %sourcekitd-test -req=cursor -pos=3:9 -req-opts=retrieve_symbol_graph=1 %s -- %s
|
|
extension NonExistentSymbolName {
|
|
var myType: String {
|
|
""
|
|
}
|
|
}
|