Files
swift-mirror/test/decl/protocol/operators_in_protocols.swift
2016-02-26 01:33:22 -08:00

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