mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
22 lines
229 B
Swift
22 lines
229 B
Swift
// RUN: %target-swift-frontend %s -emit-silgen | %target-sil-opt
|
|
|
|
infix operator ??
|
|
|
|
struct A<V, E> {
|
|
}
|
|
|
|
struct B<V, E> {
|
|
}
|
|
|
|
struct C {
|
|
}
|
|
|
|
struct V1 {
|
|
}
|
|
|
|
struct E1 {
|
|
}
|
|
|
|
var buffer: A<C, B<V1, E1>?>
|
|
var buffer2: A<C, B<V1, E1>?>?
|