mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
I am doing this separately from the actual change to eliminate the option to make it easier to review.
9 lines
126 B
Swift
9 lines
126 B
Swift
// RUN: %target-swift-frontend -primary-file %s -emit-ir
|
|
|
|
struct Bar<A1, A2> {
|
|
var a: A1
|
|
var b: Foo<A1>
|
|
}
|
|
|
|
enum Foo<A> {}
|