Files
swift-mirror/validation-test/compiler_crashers_fixed/00041-szone-malloc-should-clear.swift

23 lines
466 B
Swift

// RUN: %target-swift-frontend %s -emit-silgen
// Distributed under the terms of the MIT license
// Test case submitted to project by https://github.com/practicalswift (practicalswift)
// http://www.openradar.me/18176436
protocol A {
associatedtype E
}
struct B<T : A> {
let h: T
let i: T.E
}
protocol C {
associatedtype F
func g<T where T.E == F>(f: B<T>)
}
struct D : C {
typealias F = Int
func g<T where T.E == F>(f: B<T>) {
}
}