diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-05-12 21:31:51 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-05-12 21:31:51 +0000 |
commit | 1426e534b4fca6a05b1120d634aae46be79ca17c (patch) | |
tree | c7e2cb48eceb9e463b06b8d08b69c8569c0e85f1 /test/SemaTemplate/temp.cpp | |
parent | 7a574ccd5247189693e0764bf1f5711d33ca6064 (diff) |
Refactor the parsing of declarations so that template declarations can
parse just a single declaration and provide a reasonable diagnostic
when the "only one declarator per template declaration" rule is
violated. This eliminates some ugly, ugly hackery where we used to
require thatn the layout of a DeclGroup of a single element be the
same as the layout of a single declaration.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@71596 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/SemaTemplate/temp.cpp')
-rw-r--r-- | test/SemaTemplate/temp.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/SemaTemplate/temp.cpp b/test/SemaTemplate/temp.cpp new file mode 100644 index 0000000000..bd37cc668b --- /dev/null +++ b/test/SemaTemplate/temp.cpp @@ -0,0 +1,2 @@ +// RUN: clang-cc -fsyntax-only -verify %s +template<typename T> int foo(T), bar(T, T); // expected-error{{single entity}} |