Files
swift-mirror/test/SIL/Parser/question_mark.swift
2018-06-27 12:43:53 -07:00

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>?>?