// RUN: %swift -parse %s -verify // Simple struct types struct X1 { static func create(i: Int) -> X1 { } static func createGeneric(d: T) -> 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{{'X1' is not identical to 'Int'}} // Generic struct types struct X2 { static func create(t: T) -> X2 { } static func createGeneric(t: T, u:U) -> X2 { } } // Static methods var x2a: X2 = .create(5) x2a = .createGeneric(5, 3.14159) var x2b: X2 = .createGeneric(5, 3.14159)