mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Fixes a crash for SourceEntityWalker which assumed that a non-implicit TupleExpr has source locations for its name elements. Fixes SR-6517, rdar://35830880
15 lines
431 B
Swift
15 lines
431 B
Swift
// RUN: %target-swift-ide-test -print-indexed-symbols -source-filename %s | %FileCheck %s
|
|
|
|
// CHECK: [[@LINE+1]]:8 | struct/Swift | Int | {{.*}} | Ref | rel: 0
|
|
var _: Int { get { return 1 } }
|
|
|
|
class CrashTest {
|
|
var something = 0
|
|
func returnSelf(_ h: [AnyHashable: Any?]) -> CrashTest {
|
|
return self
|
|
}
|
|
init() { }
|
|
}
|
|
// CHECK: [[@LINE+1]]:13 | instance-method/Swift | returnSelf
|
|
CrashTest().returnSelf(["": 0]).something()
|