diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2012-09-15 21:13:36 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2012-09-15 21:13:36 +0000 |
commit | ec504e0d677594fe975e29b25d6d47be54038baf (patch) | |
tree | 5864a36c2b19336a69286f9acced8619dd449942 /test/Sema/warn-documentation.cpp | |
parent | f56faa01936b9cf909623d7f06e3c2569ca4a78e (diff) |
Comment parsing: don't treat typedef to a typedef to a function as a
'function-like' type that can be annotated with \param.
Thanks to Eli Friedman for noticing!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@163985 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Sema/warn-documentation.cpp')
-rw-r--r-- | test/Sema/warn-documentation.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/Sema/warn-documentation.cpp b/test/Sema/warn-documentation.cpp index 2c8207b8ae..649f072ab9 100644 --- a/test/Sema/warn-documentation.cpp +++ b/test/Sema/warn-documentation.cpp @@ -297,6 +297,12 @@ typedef int (* const test_param25)(int aaa, int ccc); /// \returns aaa. typedef int (C::*test_param26)(int aaa, int ccc); +typedef int (*test_param27)(int aaa); + +// expected-warning@+1 {{'\param' command used in a comment that is not attached to a function declaration}} +/// \param aaa Meow. +typedef test_param27 test_param28; + // expected-warning@+1 {{'\tparam' command used in a comment that is not attached to a template declaration}} /// \tparam T Aaa |