mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
8 lines
226 B
Swift
8 lines
226 B
Swift
// RUN: %target-typecheck-verify-swift
|
|
|
|
protocol P: class {}
|
|
protocol P1: AnyObject {}
|
|
protocol P2 {}
|
|
protocol P3: class, P2 {}
|
|
protocol P4: P2, class {} // expected-error {{'class' must come first in the requirement list}}
|