diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-08-18 00:55:03 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-08-18 00:55:03 +0000 |
commit | 4f605aff7f121d8ef0856574b7a0c6db5d46619d (patch) | |
tree | 612e348a0c09dd2576f52c1f768c6788e35ef484 /clang/test/SemaTemplate/class-template-id.cpp | |
parent | edee47891c00a8da91adb8cd910d138736422c9b (diff) | |
download | bcm5719-llvm-4f605aff7f121d8ef0856574b7a0c6db5d46619d.tar.gz bcm5719-llvm-4f605aff7f121d8ef0856574b7a0c6db5d46619d.zip |
PR41111, PR5925, PR13210: Teach tentative parsing to annotate identifiers and
nested names as id-expressions, using the annot_primary_expr annotation, where
possible. This removes some redundant lookups, and also allows us to
typo-correct within tentative parsing, and to carry on disambiguating past an
identifier which we can determine will fail lookup as both a type and as a
non-type, allowing us to disambiguate more declarations (and thus offer
improved error recovery for such cases).
This also introduces to the parser the notion of a tentatively-declared name,
which is an identifier which we *might* have seen a declaration for in a
tentative parse (but only if we end up disambiguating the tokens as a
declaration). This is necessary to correctly disambiguate cases where a
variable is used within its own initializer.
llvm-svn: 162159
Diffstat (limited to 'clang/test/SemaTemplate/class-template-id.cpp')
-rw-r--r-- | clang/test/SemaTemplate/class-template-id.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/SemaTemplate/class-template-id.cpp b/clang/test/SemaTemplate/class-template-id.cpp index 3b027787249..b674537ea71 100644 --- a/clang/test/SemaTemplate/class-template-id.cpp +++ b/clang/test/SemaTemplate/class-template-id.cpp @@ -40,7 +40,7 @@ typedef N::C<float> c2; // PR5655 template<typename T> struct Foo { }; // expected-note{{template is declared here}} -void f(void) { Foo bar; } // expected-error{{without a template argument list}} +void f(void) { Foo bar; } // expected-error{{use of class template Foo requires template arguments}} // rdar://problem/8254267 template <typename T> class Party; |