Files
swift-mirror/test/decl/protocol/req/class.swift
2024-02-02 14:57:19 -05:00

10 lines
385 B
Swift

// RUN: %target-typecheck-verify-swift
protocol P1 : class { }
protocol P2 : class, class { } // expected-error{{redundant 'class' requirement}}{{20-27=}}
protocol P3 : P2, class { } // expected-error{{'class' must come first in the requirement list}}{{15-15=class, }}{{17-24=}}
struct X : class { } // expected-error{{'class' constraint can only appear on protocol declarations}}