Files
swift-mirror/test/expr/delayed-ident/static_func.swift
Chris Lattner 995506a5e2 Improve the generic "expression...is ambiguous without more context" error in a few ways:
- Improve the specific cases of nil and empty collection literals.
- Improve cases of contextual member lookup where the result type of the looked up member disagrees with context.
- Add some fixme's to the testsuite for cases of this diagnostic that should be diagnosed in other ways.
2016-01-22 22:58:26 -08:00

34 lines
888 B
Swift

// RUN: %target-parse-verify-swift
// Simple struct types
struct X1 {
static func create(i: Int) -> X1 { }
static func createGeneric<T>(d: T) -> X1 { }
static func createMaybe(i : Int) -> X1! { }
static func notAFactory(i: Int) -> Int { }
}
// Static methods
var x1: X1 = .create(5)
x1 = .createGeneric(3.14159)
// Non-matching data members
x1 = .notAFactory(5) // expected-error{{member 'notAFactory' in 'X1' produces result of type 'Int', but context expects 'X1'}}
// Static methods returning unchecked-optional types
x1 = .createMaybe(5)
// Generic struct types
struct X2<T> {
static func create(t: T) -> X2 { }
static func createGeneric<U>(t: T, u:U) -> X2 { }
static func createMaybe(i : T) -> X2! { }
}
// Static methods
var x2a: X2 = .create(5)
x2a = .createGeneric(5, u: 3.14159)
var x2b: X2 = .createGeneric(5, u: 3.14159)
var x2c: X2 = .createMaybe(5)