mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
6 lines
351 B
Swift
6 lines
351 B
Swift
// RUN: %target-typecheck-verify-swift -swift-version 4 -warn-redundant-requirements
|
|
// 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=}}
|
|
// expected-warning@-1{{redundant constraint 'Self' : 'AnyObject'}}
|