diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-07-08 09:35:16 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-07-08 09:35:16 +0000 |
commit | fff457fc28f18fd75b8f1b0b01edf6a042afcff9 (patch) | |
tree | cc3233713e913425d117aa0d846a874c385395d2 | |
parent | fad0a32da8ea34a58aa0a0dd3fd67cd30959b080 (diff) |
test/SemaTemplate/instantiation-depth-defarg.cpp: Mark as XFAIL:mingw for now.
I'll try to increase stack size later.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159912 91177308-0d34-0410-b5e6-96231b3b80d8
-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()); // \ |