Files
swift-mirror/test/Constraints/specialization_with_shadowing.swift
Pavel Yaskevich efd43b0f7d [CSSimplify] Specialization: Fix a crash when specialized declaration is not generic
Check whether there are any opened generic parameters associated
with a declaration and if not, produce a fix which would be later
diagnosed as either a warning (in Swift 5 mode) or an error (if it
was a concrete type or the compiler is in Swift 6 language mode).

Resolves: rdar://135610320
2024-09-10 21:06:59 -07:00

77 lines
2.2 KiB
Swift

// RUN: %empty-directory(%t/src)
// RUN: split-file %s %t/src
/// Build the library A
// RUN: %target-swift-frontend -emit-module %t/src/A.swift \
// RUN: -module-name A -swift-version 5 -enable-library-evolution \
// RUN: -emit-module-path %t/A.swiftmodule \
// RUN: -emit-module-interface-path %t/A.swiftinterface
/// Build the library B
// RUN: %target-swift-frontend -emit-module %t/src/B.swift \
// RUN: -module-name B -swift-version 5 -enable-library-evolution \
// RUN: -emit-module-path %t/B.swiftmodule \
// RUN: -emit-module-interface-path %t/B.swiftinterface
// Build the client AB (language mode 5)
// RUN: %target-swift-frontend -emit-module %t/src/ClientAB.swift \
// RUN: -module-name Client -I %t -swift-version 5 \
// RUN: -verify
// Build the client AB (language mode 6)
// RUN: %target-swift-frontend -emit-module %t/src/ClientAB.swift \
// RUN: -module-name Client -I %t -swift-version 6 \
// RUN: -verify
// Build the client BA (language mode 5)
// RUN: %target-swift-frontend -emit-module %t/src/ClientBA.swift \
// RUN: -module-name Client -I %t -swift-version 5 \
// RUN: -verify
// Build the client BA (language mode 6)
// RUN: %target-swift-frontend -emit-module %t/src/ClientBA.swift \
// RUN: -module-name Client -I %t -swift-version 6 \
// RUN: -verify
//--- A.swift
public protocol EventSource {
}
//--- B.swift
public struct Event<T> {
}
public class EventSource<Parameter> {
public var event: Event<Parameter> {
fatalError()
}
public init() {}
}
//--- ClientAB.swift
import B
// Note: import order is important in this case because successful match might
// mean that the other overload is not going to be attempted and we want
// to attempt protocol EventSource always.
import A
func test() {
let test: B.Event<Void>
test = EventSource<Void>().event
print(test)
}
//--- ClientBA.swift
import B
// Note: import order is important in this case because successful match might
// mean that the other overload is not going to be attempted and we want
// to attempt protocol EventSource always.
import A
func test() {
let test: B.Event<Void>
test = EventSource<Void>().event
print(test)
}