[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git] / test / Parser / cxx-ambig-decl-expr-xfail.cpp
blobac4accb2acf960582fa7812a652b3420a1be52e2
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // XFAIL: *
3 struct X {
4 template<typename T> X(T);
5 X(int, int);
7 X operator()(int, int) const;
8 };
10 template<typename T, typename U> struct Y { };
12 X *x;
13 void f() {
14 int y = 0;
15 X (*x)(int(y), int(y)) = Y<int, float>(), ++y;