mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
10 lines
228 B
Swift
10 lines
228 B
Swift
// RUN: %target-typecheck-verify-swift %s
|
|
|
|
class C {
|
|
private init() {} // expected-note {{declared here}}
|
|
init(n: Int) {}
|
|
}
|
|
|
|
_ = C()
|
|
// expected-error@-1 {{'C' initializer is inaccessible due to 'private' protection level}}
|