blob: 5cb2a921d9f6cc626b59a07171c6dc1b60fe92c1 [file] [log] [blame]
// This test case used to crash when tsan ran before co-routine lowering.
// RUN: %target-swift-frontend -emit-ir -sanitize=thread %s | %FileCheck %s
// TSan is currently only supported on 64 bit mac and simulators.
// (We do not test the simulators here.)
// REQUIRES: CPU=x86_64, OS=macosx
public class C { }
public struct Foobar {
var things: [String: C] = [:]
}
extension Foobar {
public struct Index {
fileprivate typealias MyIndex = Dictionary<String, C>.Values.Index
fileprivate let myIndex: MyIndex
fileprivate init(_ index: MyIndex) {
self.myIndex = index
}
}
// We used to crash emitting the subscript function.
// CHECK: define swiftcc { i8*, %T15tsan_coroutines1CC* } @"$s15tsan_coroutines6FoobarVyAA1CCAC5IndexVcir"
@_borrowed
public subscript(position: Index) -> C {
return things.values[position.myIndex]
}
}