Files
swift-mirror/test/SIL/Parser/question_mark.swift
2015-09-24 16:01:00 +00:00

25 lines
272 B
Swift

// RUN: %target-swift-frontend %s -emit-silgen | %target-sil-opt
infix operator ?? {
associativity right
precedence 110
}
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>?>?