blob: 00e116446c15870b858da0f54102ffe7e7811b4a [file] [log] [blame]
// RUN: %target-typecheck-verify-swift -swift-version 3
// Generate a swift 3 compatible warning if final is specified in an extension
protocol P {}
extension P {
final func inExtension() {} // expected-warning{{functions in a protocol extension do not need to be marked with 'final'}} {{3-9=}}
}