Files
swift-mirror/validation-test/compiler_crashers_fixed/00324-swift-shortcircuit-isequal.swift
practicalswift c4866885c8 Rename old crash cases to match the current naming scheme.
Will allow for easy import of crash cases from swift-compiler-crashes.
2015-12-10 16:50:15 +01:00

15 lines
378 B
Swift

// RUN: %target-swift-frontend %s -emit-silgen
// REQUIRES: objc_interop
// Distributed under the terms of the MIT license
// Test case submitted to project by http://github.com/martijnwalraven (Martijn Walraven)
// rdar://18662915
import Foundation
class Test: NSObject {
override func isEqual(object: AnyObject?) -> Bool {
return false && super.isEqual(object)
}
}