// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++11
;
void
void
int conditional1 = 1 ? : 0; // expected-error {{initializer list cannot be used on the right hand side of operator '?'}}
int conditional2 = 1 ? 0 : ; // expected-error {{initializer list cannot be used on the right hand side of operator ':'}}