Files
swift-mirror/test/Interpreter/SDK/Cocoa_enums.swift
Ted Kremenek fad874708e Adjust test cases.
Swift SVN r17964
2014-05-12 22:01:52 +00:00

11 lines
278 B
Swift

// RUN: %target-run-simple-swift | FileCheck %s
import Foundation
let opts: NSBinarySearchingOptions = .FirstEqual | .InsertionIndex
// CHECK: true
println(opts & (.LastEqual | .InsertionIndex) == .InsertionIndex)
// CHECK: false
println((opts & .LastEqual).getLogicValue())