blob: 947a18b5d72718ee2ea308dd61c2eaa35e59b021 [file] [log] [blame]
// RUN: %target-swift-frontend -typecheck -primary-file %s %S/Inputs/sr9644-helper.swift -import-objc-header %S/Inputs/sr9644.h -verify
// REQUIRES: objc_interop
// expected-no-warning
protocol HasAssoc {
associatedtype Assoc: TestProto
}
struct Impl: HasAssoc {
// This used to trigger validation of the Test: TestProto conformance, but
// /without/ propagating the correct selector onto Test.swiftFoo's getter.
typealias Assoc = Test
}