blob: e42011525426d1978ee91661be5bfb358e791e62 [file] [log] [blame]
// RUN: %target-typecheck-verify-swift
protocol P {
static func << (lhs: Self, rhs: Self) -> Self
static func >> (lhs: Self, rhs: Self) -> Self
static func <<= (lhs: inout Self, rhs: Self)
static func >>= (lhs: inout Self, rhs: Self)
}