diff options
-rw-r--r-- | test/SemaTemplate/instantiation-depth-defarg.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/SemaTemplate/instantiation-depth-defarg.cpp b/test/SemaTemplate/instantiation-depth-defarg.cpp index d66c71ba54..f386a6a28f 100644 --- a/test/SemaTemplate/instantiation-depth-defarg.cpp +++ b/test/SemaTemplate/instantiation-depth-defarg.cpp @@ -1,5 +1,7 @@ // RUN: %clang_cc1 -fsyntax-only -verify -ftemplate-depth 512 -ftemplate-backtrace-limit 4 %s +// XFAIL: mingw32 + template<int N> struct S { typedef typename S<N-1>::type type; static int f(int n = S<N-1>::f()); // \ |