diff options
Diffstat (limited to 'clang/test/CXX/temp/temp.spec/temp.explicit/p1-0x.cpp')
-rw-r--r-- | clang/test/CXX/temp/temp.spec/temp.explicit/p1-0x.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/clang/test/CXX/temp/temp.spec/temp.explicit/p1-0x.cpp b/clang/test/CXX/temp/temp.spec/temp.explicit/p1-0x.cpp new file mode 100644 index 00000000000..becdd6b606b --- /dev/null +++ b/clang/test/CXX/temp/temp.spec/temp.explicit/p1-0x.cpp @@ -0,0 +1,10 @@ +// RUN: clang-cc -fsyntax-only -std=c++0x -verify %s + +template<typename T> +struct X { + void f(); +}; + +template inline void X<int>::f(); // expected-error{{'inline'}} + +// FIXME: test constexpr |