mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
11 lines
222 B
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
|
|
}
|