blob: cc1c37707aaa4088ab79c448fb07d82aeda3d50f [file] [log] [blame]
// 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=}}
}