mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
A parse-only option is needed for parse performance tracking and the current option also includes semantic analysis.
45 lines
665 B
Swift
45 lines
665 B
Swift
// RUN: %target-typecheck-verify-swift
|
|
|
|
struct A<T> {
|
|
// Can deduce from this constructor
|
|
init(x:T) { }
|
|
|
|
// Can't from this one
|
|
init(x:Int, y:Int) { }
|
|
|
|
static func bort(_ x: T) -> T { return x }
|
|
}
|
|
|
|
var a = A(x: 0)
|
|
var a1 : A<Int> = a
|
|
|
|
var b = A(x: "zero")
|
|
var b1 : A<String> = b
|
|
|
|
class C<T> {
|
|
init(x:T) { }
|
|
}
|
|
|
|
var c = C(x: 0)
|
|
var c1 : C<Int> = c
|
|
|
|
var d = C(x: "zero")
|
|
var d1 : C<String> = d
|
|
|
|
var x : Int = A.bort(0)
|
|
var y : String = A.bort("zero")
|
|
|
|
func foo(_ a: A<String>) { }
|
|
// Deduce A<String> from context
|
|
foo(A(x: 0, y: 0))
|
|
|
|
// Specifying only some of the generic arguments.
|
|
struct B { }
|
|
|
|
struct X<T,U> {
|
|
init(a:U) {}
|
|
}
|
|
|
|
var q = X<B,Int>(a: x)
|
|
|