mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
6 lines
255 B
Swift
6 lines
255 B
Swift
// RUN: %target-typecheck-verify-swift -swift-version 4
|
|
// RUN: not %target-swift-frontend -typecheck -swift-version 5
|
|
|
|
protocol P : class, AnyObject { } // expected-warning{{redundant inheritance from 'AnyObject' and Swift 3 'class' keyword}}{{14-21=}}
|
|
|