Files
swift-mirror/validation-test/compiler_crashers/033-constraint-ordering-heap-trash.swift

11 lines
222 B
Swift

// RUN: not --crash %swift %s -emit-ir
// Test case submitted to project by https://github.com/practicalswift (practicalswift)
// rdar://17240924
struct d<f : e, g: e where g.h == f.h> {
}
protocol e {
typealias h
}