mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
9 lines
213 B
Swift
9 lines
213 B
Swift
// RUN: %target-parse-verify-swift
|
|
|
|
protocol P {
|
|
func << (lhs: Self, rhs: Self) -> Self
|
|
func >> (lhs: Self, rhs: Self) -> Self
|
|
func <<= (lhs: inout Self, rhs: Self)
|
|
func >>= (lhs: inout Self, rhs: Self)
|
|
}
|