mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
51 lines
942 B
Swift
51 lines
942 B
Swift
// RUN: not --crash %target-swift-frontend %s -parse
|
|
// XFAIL: no_asserts
|
|
|
|
// Distributed under the terms of the MIT license
|
|
// Test case submitted to project by https://github.com/practicalswift (practicalswift)
|
|
// Test case found by fuzzing
|
|
|
|
protocol A {
|
|
typealias override func d() -> String {
|
|
return ""
|
|
}
|
|
func c() -> String {
|
|
return ""
|
|
}
|
|
}
|
|
func e<T where T: A, T: B>(t: T) {
|
|
t.c()
|
|
}
|
|
protocol b {
|
|
claealias f = d
|
|
}
|
|
class b<h : c, i : c where h.g == i> : a {
|
|
}
|
|
class b<h, i> {
|
|
}
|
|
protocol c {
|
|
typealias g
|
|
}
|
|
protocol a {
|
|
class func c(dynamicType.c()
|
|
var x1 = 1
|
|
var f1: Int -> Int = {
|
|
return $0
|
|
}
|
|
let succeeds: Int = { (x: Int, f: Int -> Int) -> Int in
|
|
return f(x)
|
|
}(x1, f1)
|
|
let crashes: Int = { x, f in
|
|
return f(x)
|
|
}(x1, f1)
|
|
b
|
|
protocol c : b { func b
|
|
import Foundation
|
|
class Foo<T>: NSObject {
|
|
var foo: T
|
|
init(foo: T) {
|
|
self.foo = foo
|
|
su
|
|
var b: ((T,}
|
|
}
|