mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
8 lines
207 B
Swift
8 lines
207 B
Swift
// RUN: %target-typecheck-verify-swift -swift-version 4
|
|
|
|
protocol P {}
|
|
|
|
extension P {
|
|
final func inExtension() {} // expected-error {{only classes and class members may be marked with 'final'}} {{3-9=}}
|
|
}
|