Files
swift-mirror/test/Compatibility/anyobject_class.swift
2022-05-10 12:56:17 -04:00

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'}}