mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
If type is explicitly specialized i.e. `A<Int>` in certain cases its `TypeExpr` or `OverloadedDeclRefExpr` (if type name is ambiguous) would be wrapped in `UnresolvedSpecializeExpr` which has to be looked through when simplifying `constructor member` so the anchor could point to the underlying type reference. Resolves: https://github.com/apple/swift/issues/67799 Resolves: rdar://113577294
49 lines
1.2 KiB
Swift
49 lines
1.2 KiB
Swift
// RUN: %empty-directory(%t/src)
|
|
// RUN: %empty-directory(%t/sdk)
|
|
// RUN: split-file %s %t/src
|
|
|
|
// 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: %target-swift-frontend -emit-module %t/src/B.swift \
|
|
// RUN: -I %t -module-name B -swift-version 5 -enable-library-evolution \
|
|
// RUN: -emit-module-path %t/B.swiftmodule
|
|
|
|
// RUN: %target-swift-frontend -typecheck %t/src/main.swift \
|
|
// RUN: -module-name main -I %t -verify
|
|
|
|
// https://github.com/apple/swift/issues/67799
|
|
|
|
//--- A.swift
|
|
public final class S<T> {
|
|
public init(t: T) {
|
|
}
|
|
|
|
public func test() {}
|
|
public static func staticFn() {}
|
|
}
|
|
|
|
//--- B.swift
|
|
public final class S<T> {
|
|
public init(t: T) {
|
|
}
|
|
|
|
public func test() {}
|
|
public static func staticFn() {}
|
|
}
|
|
|
|
//--- main.swift
|
|
import A
|
|
import B
|
|
|
|
func test() {
|
|
_ = S<Int>(t: 42) // expected-error {{ambiguous use of 'init(t:)'}}
|
|
|
|
S<Int>(t: 42).test() // expected-error {{ambiguous use of 'init(t:)'}}
|
|
|
|
// FIXME(diagnostics): This should produce ambiguity diagnostic too
|
|
S<Int>.staticFn()
|
|
// expected-error@-1 {{generic parameter 'T' could not be inferred}}
|
|
}
|