mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
28 lines
1.0 KiB
Swift
28 lines
1.0 KiB
Swift
// Compile the imported module to a .swiftinterface and ensure the convenience
|
|
// init cannot be called.
|
|
|
|
// RUN: %empty-directory(%t)
|
|
// RUN: %target-swift-emit-module-interface(%t/Module.swiftinterface) %S/non-public-designated-inits.swift -module-name Module
|
|
// RUN: %target-swift-typecheck-module-from-interface(%t/Module.swiftinterface) -module-name Module
|
|
// RUN: %target-swift-frontend -typecheck -verify %s -I %t
|
|
|
|
// Make sure the same error is emitted when importing a .swiftmodule
|
|
|
|
// RUN: %empty-directory(%t)
|
|
// RUN: %target-swift-frontend -emit-module -o %t/Module.swiftmodule %S/non-public-designated-inits.swift -module-name Module -enable-library-evolution
|
|
// RUN: %target-swift-frontend -typecheck -verify %s -I %t
|
|
|
|
import Module
|
|
|
|
open class B : A {
|
|
var x: Int
|
|
|
|
public override init(_ x: Int) {
|
|
self.x = x
|
|
super.init(x)
|
|
}
|
|
}
|
|
|
|
print(B(hi: ())) // expected-error {{cannot convert value of type '()' to expected argument type 'Int'}}
|
|
// expected-error @-1 {{extraneous argument label 'hi:' in call}}
|