]> granicus.if.org Git - clang/commitdiff
Fix the parser's updating of the template depth when parsing local templates and...
authorFaisal Vali <faisalv@yahoo.com>
Sat, 8 Jun 2013 19:33:09 +0000 (19:33 +0000)
committerFaisal Vali <faisalv@yahoo.com>
Sat, 8 Jun 2013 19:33:09 +0000 (19:33 +0000)
This patch was LGTM'd by Doug http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-20130506/079656.html and passed the regression tests that normally pass (i.e. excluding many Module and Index tests on Windows that fail regardless)

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@183618 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Parse/ParseTemplate.cpp
test/SemaTemplate/local-member-templates.cpp

index 84b7df7295f669e36b4e759870225dec4c63defe..9b76934e2e5ac98e3cdfbf303d4993c2d41f6b8e 100644 (file)
-//===--- ParseTemplate.cpp - Template Parsing -----------------------------===//
-//
-//                     The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-//  This file implements parsing of C++ templates.
-//
-//===----------------------------------------------------------------------===//
-
-#include "clang/Parse/Parser.h"
-#include "RAIIObjectsForParser.h"
-#include "clang/AST/ASTConsumer.h"
-#include "clang/AST/DeclTemplate.h"
-#include "clang/Parse/ParseDiagnostic.h"
-#include "clang/Sema/DeclSpec.h"
-#include "clang/Sema/ParsedTemplate.h"
-#include "clang/Sema/Scope.h"
-using namespace clang;
-
-/// \brief Parse a template declaration, explicit instantiation, or
-/// explicit specialization.
-Decl *
-Parser::ParseDeclarationStartingWithTemplate(unsigned Context,
-                                             SourceLocation &DeclEnd,
-                                             AccessSpecifier AS,
-                                             AttributeList *AccessAttrs) {
-  ObjCDeclContextSwitch ObjCDC(*this);
-  
-  if (Tok.is(tok::kw_template) && NextToken().isNot(tok::less)) {
-    return ParseExplicitInstantiation(Context,
-                                      SourceLocation(), ConsumeToken(),
-                                      DeclEnd, AS);
-  }
-  return ParseTemplateDeclarationOrSpecialization(Context, DeclEnd, AS,
-                                                  AccessAttrs);
-}
-
-
-
-/// \brief Parse a template declaration or an explicit specialization.
-///
-/// Template declarations include one or more template parameter lists
-/// and either the function or class template declaration. Explicit
-/// specializations contain one or more 'template < >' prefixes
-/// followed by a (possibly templated) declaration. Since the
-/// syntactic form of both features is nearly identical, we parse all
-/// of the template headers together and let semantic analysis sort
-/// the declarations from the explicit specializations.
-///
-///       template-declaration: [C++ temp]
-///         'export'[opt] 'template' '<' template-parameter-list '>' declaration
-///
-///       explicit-specialization: [ C++ temp.expl.spec]
-///         'template' '<' '>' declaration
-Decl *
-Parser::ParseTemplateDeclarationOrSpecialization(unsigned Context,
-                                                 SourceLocation &DeclEnd,
-                                                 AccessSpecifier AS,
-                                                 AttributeList *AccessAttrs) {
-  assert((Tok.is(tok::kw_export) || Tok.is(tok::kw_template)) &&
-         "Token does not start a template declaration.");
-
-  // Enter template-parameter scope.
-  ParseScope TemplateParmScope(this, Scope::TemplateParamScope);
-
-  // Tell the action that names should be checked in the context of
-  // the declaration to come.
-  ParsingDeclRAIIObject
-    ParsingTemplateParams(*this, ParsingDeclRAIIObject::NoParent);
-
-  // Parse multiple levels of template headers within this template
-  // parameter scope, e.g.,
-  //
-  //   template<typename T>
-  //     template<typename U>
-  //       class A<T>::B { ... };
-  //
-  // We parse multiple levels non-recursively so that we can build a
-  // single data structure containing all of the template parameter
-  // lists to easily differentiate between the case above and:
-  //
-  //   template<typename T>
-  //   class A {
-  //     template<typename U> class B;
-  //   };
-  //
-  // In the first case, the action for declaring A<T>::B receives
-  // both template parameter lists. In the second case, the action for
-  // defining A<T>::B receives just the inner template parameter list
-  // (and retrieves the outer template parameter list from its
-  // context).
-  bool isSpecialization = true;
-  bool LastParamListWasEmpty = false;
-  TemplateParameterLists ParamLists;
-  TemplateParameterDepthRAII CurTemplateDepthTracker(TemplateParameterDepth);
-
-  do {
-    // Consume the 'export', if any.
-    SourceLocation ExportLoc;
-    if (Tok.is(tok::kw_export)) {
-      ExportLoc = ConsumeToken();
-    }
-
-    // Consume the 'template', which should be here.
-    SourceLocation TemplateLoc;
-    if (Tok.is(tok::kw_template)) {
-      TemplateLoc = ConsumeToken();
-    } else {
-      Diag(Tok.getLocation(), diag::err_expected_template);
-      return 0;
-    }
-
-    // Parse the '<' template-parameter-list '>'
-    SourceLocation LAngleLoc, RAngleLoc;
-    SmallVector<Decl*, 4> TemplateParams;
-    if (ParseTemplateParameters(CurTemplateDepthTracker.getDepth(),
-                                TemplateParams, LAngleLoc, RAngleLoc)) {
-      // Skip until the semi-colon or a }.
-      SkipUntil(tok::r_brace, true, true);
-      if (Tok.is(tok::semi))
-        ConsumeToken();
-      return 0;
-    }
-
-    ParamLists.push_back(
-      Actions.ActOnTemplateParameterList(CurTemplateDepthTracker.getDepth(), 
-                                         ExportLoc,
-                                         TemplateLoc, LAngleLoc,
-                                         TemplateParams.data(),
-                                         TemplateParams.size(), RAngleLoc));
-
-    if (!TemplateParams.empty()) {
-      isSpecialization = false;
-      ++CurTemplateDepthTracker;
-    } else {
-      LastParamListWasEmpty = true;
-    }
-  } while (Tok.is(tok::kw_export) || Tok.is(tok::kw_template));
-
-  // Parse the actual template declaration.
-  return ParseSingleDeclarationAfterTemplate(Context,
-                                             ParsedTemplateInfo(&ParamLists,
-                                                             isSpecialization,
-                                                         LastParamListWasEmpty),
-                                             ParsingTemplateParams,
-                                             DeclEnd, AS, AccessAttrs);
-}
-
-/// \brief Parse a single declaration that declares a template,
-/// template specialization, or explicit instantiation of a template.
-///
-/// \param DeclEnd will receive the source location of the last token
-/// within this declaration.
-///
-/// \param AS the access specifier associated with this
-/// declaration. Will be AS_none for namespace-scope declarations.
-///
-/// \returns the new declaration.
-Decl *
-Parser::ParseSingleDeclarationAfterTemplate(
-                                       unsigned Context,
-                                       const ParsedTemplateInfo &TemplateInfo,
-                                       ParsingDeclRAIIObject &DiagsFromTParams,
-                                       SourceLocation &DeclEnd,
-                                       AccessSpecifier AS,
-                                       AttributeList *AccessAttrs) {
-  assert(TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate &&
-         "Template information required");
-
-  if (Context == Declarator::MemberContext) {
-    // We are parsing a member template.
-    ParseCXXClassMemberDeclaration(AS, AccessAttrs, TemplateInfo,
-                                   &DiagsFromTParams);
-    return 0;
-  }
-
-  ParsedAttributesWithRange prefixAttrs(AttrFactory);
-  MaybeParseCXX11Attributes(prefixAttrs);
-
-  if (Tok.is(tok::kw_using))
-    return ParseUsingDirectiveOrDeclaration(Context, TemplateInfo, DeclEnd,
-                                            prefixAttrs);
-
-  // Parse the declaration specifiers, stealing any diagnostics from
-  // the template parameters.
-  ParsingDeclSpec DS(*this, &DiagsFromTParams);
-
-  ParseDeclarationSpecifiers(DS, TemplateInfo, AS,
-                             getDeclSpecContextFromDeclaratorContext(Context));
-
-  if (Tok.is(tok::semi)) {
-    ProhibitAttributes(prefixAttrs);
-    DeclEnd = ConsumeToken();
-    Decl *Decl = Actions.ParsedFreeStandingDeclSpec(
-        getCurScope(), AS, DS,
-        TemplateInfo.TemplateParams ? *TemplateInfo.TemplateParams
-                                    : MultiTemplateParamsArg(),
-        TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation);
-    DS.complete(Decl);
-    return Decl;
-  }
-
-  // Move the attributes from the prefix into the DS.
-  if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation)
-    ProhibitAttributes(prefixAttrs);
-  else
-    DS.takeAttributesFrom(prefixAttrs);
-
-  // Parse the declarator.
-  ParsingDeclarator DeclaratorInfo(*this, DS, (Declarator::TheContext)Context);
-  ParseDeclarator(DeclaratorInfo);
-  // Error parsing the declarator?
-  if (!DeclaratorInfo.hasName()) {
-    // If so, skip until the semi-colon or a }.
-    SkipUntil(tok::r_brace, true, true);
-    if (Tok.is(tok::semi))
-      ConsumeToken();
-    return 0;
-  }
-
-  LateParsedAttrList LateParsedAttrs(true);
-  if (DeclaratorInfo.isFunctionDeclarator())
-    MaybeParseGNUAttributes(DeclaratorInfo, &LateParsedAttrs);
-
-  if (DeclaratorInfo.isFunctionDeclarator() &&
-      isStartOfFunctionDefinition(DeclaratorInfo)) {
-    if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
-      // Recover by ignoring the 'typedef'. This was probably supposed to be
-      // the 'typename' keyword, which we should have already suggested adding
-      // if it's appropriate.
-      Diag(DS.getStorageClassSpecLoc(), diag::err_function_declared_typedef)
-        << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc());
-      DS.ClearStorageClassSpecs();
-    }
-    return ParseFunctionDefinition(DeclaratorInfo, TemplateInfo,
-                                   &LateParsedAttrs);
-  }
-
-  // Parse this declaration.
-  Decl *ThisDecl = ParseDeclarationAfterDeclarator(DeclaratorInfo,
-                                                   TemplateInfo);
-
-  if (Tok.is(tok::comma)) {
-    Diag(Tok, diag::err_multiple_template_declarators)
-      << (int)TemplateInfo.Kind;
-    SkipUntil(tok::semi, true, false);
-    return ThisDecl;
-  }
-
-  // Eat the semi colon after the declaration.
-  ExpectAndConsumeSemi(diag::err_expected_semi_declaration);
-  if (LateParsedAttrs.size() > 0)
-    ParseLexedAttributeList(LateParsedAttrs, ThisDecl, true, false);
-  DeclaratorInfo.complete(ThisDecl);
-  return ThisDecl;
-}
-
-/// ParseTemplateParameters - Parses a template-parameter-list enclosed in
-/// angle brackets. Depth is the depth of this template-parameter-list, which
-/// is the number of template headers directly enclosing this template header.
-/// TemplateParams is the current list of template parameters we're building.
-/// The template parameter we parse will be added to this list. LAngleLoc and
-/// RAngleLoc will receive the positions of the '<' and '>', respectively,
-/// that enclose this template parameter list.
-///
-/// \returns true if an error occurred, false otherwise.
-bool Parser::ParseTemplateParameters(unsigned Depth,
-                               SmallVectorImpl<Decl*> &TemplateParams,
-                                     SourceLocation &LAngleLoc,
-                                     SourceLocation &RAngleLoc) {
-  // Get the template parameter list.
-  if (!Tok.is(tok::less)) {
-    Diag(Tok.getLocation(), diag::err_expected_less_after) << "template";
-    return true;
-  }
-  LAngleLoc = ConsumeToken();
-
-  // Try to parse the template parameter list.
-  bool Failed = false;
-  if (!Tok.is(tok::greater) && !Tok.is(tok::greatergreater))
-    Failed = ParseTemplateParameterList(Depth, TemplateParams);
-
-  if (Tok.is(tok::greatergreater)) {
-    // No diagnostic required here: a template-parameter-list can only be
-    // followed by a declaration or, for a template template parameter, the
-    // 'class' keyword. Therefore, the second '>' will be diagnosed later.
-    // This matters for elegant diagnosis of:
-    //   template<template<typename>> struct S;
-    Tok.setKind(tok::greater);
-    RAngleLoc = Tok.getLocation();
-    Tok.setLocation(Tok.getLocation().getLocWithOffset(1));
-  } else if (Tok.is(tok::greater))
-    RAngleLoc = ConsumeToken();
-  else if (Failed) {
-    Diag(Tok.getLocation(), diag::err_expected_greater);
-    return true;
-  }
-  return false;
-}
-
-/// ParseTemplateParameterList - Parse a template parameter list. If
-/// the parsing fails badly (i.e., closing bracket was left out), this
-/// will try to put the token stream in a reasonable position (closing
-/// a statement, etc.) and return false.
-///
-///       template-parameter-list:    [C++ temp]
-///         template-parameter
-///         template-parameter-list ',' template-parameter
-bool
-Parser::ParseTemplateParameterList(unsigned Depth,
-                             SmallVectorImpl<Decl*> &TemplateParams) {
-  while (1) {
-    if (Decl *TmpParam
-          = ParseTemplateParameter(Depth, TemplateParams.size())) {
-      TemplateParams.push_back(TmpParam);
-    } else {
-      // If we failed to parse a template parameter, skip until we find
-      // a comma or closing brace.
-      SkipUntil(tok::comma, tok::greater, tok::greatergreater, true, true);
-    }
-
-    // Did we find a comma or the end of the template parameter list?
-    if (Tok.is(tok::comma)) {
-      ConsumeToken();
-    } else if (Tok.is(tok::greater) || Tok.is(tok::greatergreater)) {
-      // Don't consume this... that's done by template parser.
-      break;
-    } else {
-      // Somebody probably forgot to close the template. Skip ahead and
-      // try to get out of the expression. This error is currently
-      // subsumed by whatever goes on in ParseTemplateParameter.
-      Diag(Tok.getLocation(), diag::err_expected_comma_greater);
-      SkipUntil(tok::comma, tok::greater, tok::greatergreater, true, true);
-      return false;
-    }
-  }
-  return true;
-}
-
-/// \brief Determine whether the parser is at the start of a template
-/// type parameter.
-bool Parser::isStartOfTemplateTypeParameter() {
-  if (Tok.is(tok::kw_class)) {
-    // "class" may be the start of an elaborated-type-specifier or a
-    // type-parameter. Per C++ [temp.param]p3, we prefer the type-parameter.
-    switch (NextToken().getKind()) {
-    case tok::equal:
-    case tok::comma:
-    case tok::greater:
-    case tok::greatergreater:
-    case tok::ellipsis:
-      return true;
-        
-    case tok::identifier:
-      // This may be either a type-parameter or an elaborated-type-specifier. 
-      // We have to look further.
-      break;
-        
-    default:
-      return false;
-    }
-    
-    switch (GetLookAheadToken(2).getKind()) {
-    case tok::equal:
-    case tok::comma:
-    case tok::greater:
-    case tok::greatergreater:
-      return true;
-      
-    default:
-      return false;
-    }
-  }
-
-  if (Tok.isNot(tok::kw_typename))
-    return false;
-
-  // C++ [temp.param]p2:
-  //   There is no semantic difference between class and typename in a
-  //   template-parameter. typename followed by an unqualified-id
-  //   names a template type parameter. typename followed by a
-  //   qualified-id denotes the type in a non-type
-  //   parameter-declaration.
-  Token Next = NextToken();
-
-  // If we have an identifier, skip over it.
-  if (Next.getKind() == tok::identifier)
-    Next = GetLookAheadToken(2);
-
-  switch (Next.getKind()) {
-  case tok::equal:
-  case tok::comma:
-  case tok::greater:
-  case tok::greatergreater:
-  case tok::ellipsis:
-    return true;
-
-  default:
-    return false;
-  }
-}
-
-/// ParseTemplateParameter - Parse a template-parameter (C++ [temp.param]).
-///
-///       template-parameter: [C++ temp.param]
-///         type-parameter
-///         parameter-declaration
-///
-///       type-parameter: (see below)
-///         'class' ...[opt] identifier[opt]
-///         'class' identifier[opt] '=' type-id
-///         'typename' ...[opt] identifier[opt]
-///         'typename' identifier[opt] '=' type-id
-///         'template' '<' template-parameter-list '>' 
-///               'class' ...[opt] identifier[opt]
-///         'template' '<' template-parameter-list '>' 'class' identifier[opt]
-///               = id-expression
-Decl *Parser::ParseTemplateParameter(unsigned Depth, unsigned Position) {
-  if (isStartOfTemplateTypeParameter())
-    return ParseTypeParameter(Depth, Position);
-
-  if (Tok.is(tok::kw_template))
-    return ParseTemplateTemplateParameter(Depth, Position);
-
-  // If it's none of the above, then it must be a parameter declaration.
-  // NOTE: This will pick up errors in the closure of the template parameter
-  // list (e.g., template < ; Check here to implement >> style closures.
-  return ParseNonTypeTemplateParameter(Depth, Position);
-}
-
-/// ParseTypeParameter - Parse a template type parameter (C++ [temp.param]).
-/// Other kinds of template parameters are parsed in
-/// ParseTemplateTemplateParameter and ParseNonTypeTemplateParameter.
-///
-///       type-parameter:     [C++ temp.param]
-///         'class' ...[opt][C++0x] identifier[opt]
-///         'class' identifier[opt] '=' type-id
-///         'typename' ...[opt][C++0x] identifier[opt]
-///         'typename' identifier[opt] '=' type-id
-Decl *Parser::ParseTypeParameter(unsigned Depth, unsigned Position) {
-  assert((Tok.is(tok::kw_class) || Tok.is(tok::kw_typename)) &&
-         "A type-parameter starts with 'class' or 'typename'");
-
-  // Consume the 'class' or 'typename' keyword.
-  bool TypenameKeyword = Tok.is(tok::kw_typename);
-  SourceLocation KeyLoc = ConsumeToken();
-
-  // Grab the ellipsis (if given).
-  bool Ellipsis = false;
-  SourceLocation EllipsisLoc;
-  if (Tok.is(tok::ellipsis)) {
-    Ellipsis = true;
-    EllipsisLoc = ConsumeToken();
-
-    Diag(EllipsisLoc,
-         getLangOpts().CPlusPlus11
-           ? diag::warn_cxx98_compat_variadic_templates
-           : diag::ext_variadic_templates);
-  }
-
-  // Grab the template parameter name (if given)
-  SourceLocation NameLoc;
-  IdentifierInfo* ParamName = 0;
-  if (Tok.is(tok::identifier)) {
-    ParamName = Tok.getIdentifierInfo();
-    NameLoc = ConsumeToken();
-  } else if (Tok.is(tok::equal) || Tok.is(tok::comma) ||
-             Tok.is(tok::greater) || Tok.is(tok::greatergreater)) {
-    // Unnamed template parameter. Don't have to do anything here, just
-    // don't consume this token.
-  } else {
-    Diag(Tok.getLocation(), diag::err_expected_ident);
-    return 0;
-  }
-
-  // Grab a default argument (if available).
-  // Per C++0x [basic.scope.pdecl]p9, we parse the default argument before
-  // we introduce the type parameter into the local scope.
-  SourceLocation EqualLoc;
-  ParsedType DefaultArg;
-  if (Tok.is(tok::equal)) {
-    EqualLoc = ConsumeToken();
-    DefaultArg = ParseTypeName(/*Range=*/0,
-                               Declarator::TemplateTypeArgContext).get();
-  }
-
-  return Actions.ActOnTypeParameter(getCurScope(), TypenameKeyword, Ellipsis, 
-                                    EllipsisLoc, KeyLoc, ParamName, NameLoc,
-                                    Depth, Position, EqualLoc, DefaultArg);
-}
-
-/// ParseTemplateTemplateParameter - Handle the parsing of template
-/// template parameters.
-///
-///       type-parameter:    [C++ temp.param]
-///         'template' '<' template-parameter-list '>' 'class' 
-///                  ...[opt] identifier[opt]
-///         'template' '<' template-parameter-list '>' 'class' identifier[opt] 
-///                  = id-expression
-Decl *
-Parser::ParseTemplateTemplateParameter(unsigned Depth, unsigned Position) {
-  assert(Tok.is(tok::kw_template) && "Expected 'template' keyword");
-
-  // Handle the template <...> part.
-  SourceLocation TemplateLoc = ConsumeToken();
-  SmallVector<Decl*,8> TemplateParams;
-  SourceLocation LAngleLoc, RAngleLoc;
-  {
-    ParseScope TemplateParmScope(this, Scope::TemplateParamScope);
-    if (ParseTemplateParameters(Depth + 1, TemplateParams, LAngleLoc,
-                               RAngleLoc)) {
-      return 0;
-    }
-  }
-
-  // Generate a meaningful error if the user forgot to put class before the
-  // identifier, comma, or greater. Provide a fixit if the identifier, comma,
-  // or greater appear immediately or after 'typename' or 'struct'. In the
-  // latter case, replace the keyword with 'class'.
-  if (!Tok.is(tok::kw_class)) {
-    bool Replace = Tok.is(tok::kw_typename) || Tok.is(tok::kw_struct);
-    const Token& Next = Replace ? NextToken() : Tok;
-    if (Next.is(tok::identifier) || Next.is(tok::comma) ||
-        Next.is(tok::greater) || Next.is(tok::greatergreater) ||
-        Next.is(tok::ellipsis))
-      Diag(Tok.getLocation(), diag::err_class_on_template_template_param)
-        << (Replace ? FixItHint::CreateReplacement(Tok.getLocation(), "class")
-                    : FixItHint::CreateInsertion(Tok.getLocation(), "class "));
-    else
-      Diag(Tok.getLocation(), diag::err_class_on_template_template_param);
-
-    if (Replace)
-      ConsumeToken();
-  } else
-    ConsumeToken();
-
-  // Parse the ellipsis, if given.
-  SourceLocation EllipsisLoc;
-  if (Tok.is(tok::ellipsis)) {
-    EllipsisLoc = ConsumeToken();
-    
-    Diag(EllipsisLoc,
-         getLangOpts().CPlusPlus11
-           ? diag::warn_cxx98_compat_variadic_templates
-           : diag::ext_variadic_templates);
-  }
-      
-  // Get the identifier, if given.
-  SourceLocation NameLoc;
-  IdentifierInfo* ParamName = 0;
-  if (Tok.is(tok::identifier)) {
-    ParamName = Tok.getIdentifierInfo();
-    NameLoc = ConsumeToken();
-  } else if (Tok.is(tok::equal) || Tok.is(tok::comma) ||
-             Tok.is(tok::greater) || Tok.is(tok::greatergreater)) {
-    // Unnamed template parameter. Don't have to do anything here, just
-    // don't consume this token.
-  } else {
-    Diag(Tok.getLocation(), diag::err_expected_ident);
-    return 0;
-  }
-
-  TemplateParameterList *ParamList =
-    Actions.ActOnTemplateParameterList(Depth, SourceLocation(),
-                                       TemplateLoc, LAngleLoc,
-                                       TemplateParams.data(),
-                                       TemplateParams.size(),
-                                       RAngleLoc);
-
-  // Grab a default argument (if available).
-  // Per C++0x [basic.scope.pdecl]p9, we parse the default argument before
-  // we introduce the template parameter into the local scope.
-  SourceLocation EqualLoc;
-  ParsedTemplateArgument DefaultArg;
-  if (Tok.is(tok::equal)) {
-    EqualLoc = ConsumeToken();
-    DefaultArg = ParseTemplateTemplateArgument();
-    if (DefaultArg.isInvalid()) {
-      Diag(Tok.getLocation(), 
-           diag::err_default_template_template_parameter_not_template);
-      SkipUntil(tok::comma, tok::greater, tok::greatergreater, true, true);
-    }
-  }
-  
-  return Actions.ActOnTemplateTemplateParameter(getCurScope(), TemplateLoc,
-                                                ParamList, EllipsisLoc, 
-                                                ParamName, NameLoc, Depth, 
-                                                Position, EqualLoc, DefaultArg);
-}
-
-/// ParseNonTypeTemplateParameter - Handle the parsing of non-type
-/// template parameters (e.g., in "template<int Size> class array;").
-///
-///       template-parameter:
-///         ...
-///         parameter-declaration
-Decl *
-Parser::ParseNonTypeTemplateParameter(unsigned Depth, unsigned Position) {
-  // Parse the declaration-specifiers (i.e., the type).
-  // FIXME: The type should probably be restricted in some way... Not all
-  // declarators (parts of declarators?) are accepted for parameters.
-  DeclSpec DS(AttrFactory);
-  ParseDeclarationSpecifiers(DS);
-
-  // Parse this as a typename.
-  Declarator ParamDecl(DS, Declarator::TemplateParamContext);
-  ParseDeclarator(ParamDecl);
-  if (DS.getTypeSpecType() == DeclSpec::TST_unspecified) {
-    Diag(Tok.getLocation(), diag::err_expected_template_parameter);
-    return 0;
-  }
-
-  // If there is a default value, parse it.
-  // Per C++0x [basic.scope.pdecl]p9, we parse the default argument before
-  // we introduce the template parameter into the local scope.
-  SourceLocation EqualLoc;
-  ExprResult DefaultArg;
-  if (Tok.is(tok::equal)) {
-    EqualLoc = ConsumeToken();
-
-    // C++ [temp.param]p15:
-    //   When parsing a default template-argument for a non-type
-    //   template-parameter, the first non-nested > is taken as the
-    //   end of the template-parameter-list rather than a greater-than
-    //   operator.
-    GreaterThanIsOperatorScope G(GreaterThanIsOperator, false);
-    EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated);
-
-    DefaultArg = ParseAssignmentExpression();
-    if (DefaultArg.isInvalid())
-      SkipUntil(tok::comma, tok::greater, true, true);
-  }
-
-  // Create the parameter.
-  return Actions.ActOnNonTypeTemplateParameter(getCurScope(), ParamDecl, 
-                                               Depth, Position, EqualLoc, 
-                                               DefaultArg.take());
-}
-
-/// \brief Parses a '>' at the end of a template list.
-///
-/// If this function encounters '>>', '>>>', '>=', or '>>=', it tries
-/// to determine if these tokens were supposed to be a '>' followed by
-/// '>', '>>', '>=', or '>='. It emits an appropriate diagnostic if necessary.
-///
-/// \param RAngleLoc the location of the consumed '>'.
-///
-/// \param ConsumeLastToken if true, the '>' is not consumed.
-bool Parser::ParseGreaterThanInTemplateList(SourceLocation &RAngleLoc,
-                                            bool ConsumeLastToken) {
-  // What will be left once we've consumed the '>'.
-  tok::TokenKind RemainingToken;
-  const char *ReplacementStr = "> >";
-
-  switch (Tok.getKind()) {
-  default:
-    Diag(Tok.getLocation(), diag::err_expected_greater);
-    return true;
-
-  case tok::greater:
-    // Determine the location of the '>' token. Only consume this token
-    // if the caller asked us to.
-    RAngleLoc = Tok.getLocation();
-    if (ConsumeLastToken)
-      ConsumeToken();
-    return false;
-
-  case tok::greatergreater:
-    RemainingToken = tok::greater;
-    break;
-
-  case tok::greatergreatergreater:
-    RemainingToken = tok::greatergreater;
-    break;
-
-  case tok::greaterequal:
-    RemainingToken = tok::equal;
-    ReplacementStr = "> =";
-    break;
-
-  case tok::greatergreaterequal:
-    RemainingToken = tok::greaterequal;
-    break;
-  }
-
-  // This template-id is terminated by a token which starts with a '>'. Outside
-  // C++11, this is now error recovery, and in C++11, this is error recovery if
-  // the token isn't '>>'.
-
-  RAngleLoc = Tok.getLocation();
-
-  // The source range of the '>>' or '>=' at the start of the token.
-  CharSourceRange ReplacementRange =
-      CharSourceRange::getCharRange(RAngleLoc,
-          Lexer::AdvanceToTokenCharacter(RAngleLoc, 2, PP.getSourceManager(),
-                                         getLangOpts()));
-
-  // A hint to put a space between the '>>'s. In order to make the hint as
-  // clear as possible, we include the characters either side of the space in
-  // the replacement, rather than just inserting a space at SecondCharLoc.
-  FixItHint Hint1 = FixItHint::CreateReplacement(ReplacementRange,
-                                                 ReplacementStr);
-
-  // A hint to put another space after the token, if it would otherwise be
-  // lexed differently.
-  FixItHint Hint2;
-  Token Next = NextToken();
-  if ((RemainingToken == tok::greater ||
-       RemainingToken == tok::greatergreater) &&
-      (Next.is(tok::greater) || Next.is(tok::greatergreater) ||
-       Next.is(tok::greatergreatergreater) || Next.is(tok::equal) ||
-       Next.is(tok::greaterequal) || Next.is(tok::greatergreaterequal) ||
-       Next.is(tok::equalequal)) &&
-      areTokensAdjacent(Tok, Next))
-    Hint2 = FixItHint::CreateInsertion(Next.getLocation(), " ");
-
-  unsigned DiagId = diag::err_two_right_angle_brackets_need_space;
-  if (getLangOpts().CPlusPlus11 && Tok.is(tok::greatergreater))
-    DiagId = diag::warn_cxx98_compat_two_right_angle_brackets;
-  else if (Tok.is(tok::greaterequal))
-    DiagId = diag::err_right_angle_bracket_equal_needs_space;
-  Diag(Tok.getLocation(), DiagId) << Hint1 << Hint2;
-
-  // Strip the initial '>' from the token.
-  if (RemainingToken == tok::equal && Next.is(tok::equal) &&
-      areTokensAdjacent(Tok, Next)) {
-    // Join two adjacent '=' tokens into one, for cases like:
-    //   void (*p)() = f<int>;
-    //   return f<int>==p;
-    ConsumeToken();
-    Tok.setKind(tok::equalequal);
-    Tok.setLength(Tok.getLength() + 1);
-  } else {
-    Tok.setKind(RemainingToken);
-    Tok.setLength(Tok.getLength() - 1);
-  }
-  Tok.setLocation(Lexer::AdvanceToTokenCharacter(RAngleLoc, 1,
-                                                 PP.getSourceManager(),
-                                                 getLangOpts()));
-
-  if (!ConsumeLastToken) {
-    // Since we're not supposed to consume the '>' token, we need to push
-    // this token and revert the current token back to the '>'.
-    PP.EnterToken(Tok);
-    Tok.setKind(tok::greater);
-    Tok.setLength(1);
-    Tok.setLocation(RAngleLoc);
-  }
-  return false;
-}
-
-
-/// \brief Parses a template-id that after the template name has
-/// already been parsed.
-///
-/// This routine takes care of parsing the enclosed template argument
-/// list ('<' template-parameter-list [opt] '>') and placing the
-/// results into a form that can be transferred to semantic analysis.
-///
-/// \param Template the template declaration produced by isTemplateName
-///
-/// \param TemplateNameLoc the source location of the template name
-///
-/// \param SS if non-NULL, the nested-name-specifier preceding the
-/// template name.
-///
-/// \param ConsumeLastToken if true, then we will consume the last
-/// token that forms the template-id. Otherwise, we will leave the
-/// last token in the stream (e.g., so that it can be replaced with an
-/// annotation token).
-bool
-Parser::ParseTemplateIdAfterTemplateName(TemplateTy Template,
-                                         SourceLocation TemplateNameLoc,
-                                         const CXXScopeSpec &SS,
-                                         bool ConsumeLastToken,
-                                         SourceLocation &LAngleLoc,
-                                         TemplateArgList &TemplateArgs,
-                                         SourceLocation &RAngleLoc) {
-  assert(Tok.is(tok::less) && "Must have already parsed the template-name");
-
-  // Consume the '<'.
-  LAngleLoc = ConsumeToken();
-
-  // Parse the optional template-argument-list.
-  bool Invalid = false;
-  {
-    GreaterThanIsOperatorScope G(GreaterThanIsOperator, false);
-    if (Tok.isNot(tok::greater) && Tok.isNot(tok::greatergreater))
-      Invalid = ParseTemplateArgumentList(TemplateArgs);
-
-    if (Invalid) {
-      // Try to find the closing '>'.
-      SkipUntil(tok::greater, true, !ConsumeLastToken);
-
-      return true;
-    }
-  }
-
-  return ParseGreaterThanInTemplateList(RAngleLoc, ConsumeLastToken);
-}
-
-/// \brief Replace the tokens that form a simple-template-id with an
-/// annotation token containing the complete template-id.
-///
-/// The first token in the stream must be the name of a template that
-/// is followed by a '<'. This routine will parse the complete
-/// simple-template-id and replace the tokens with a single annotation
-/// token with one of two different kinds: if the template-id names a
-/// type (and \p AllowTypeAnnotation is true), the annotation token is
-/// a type annotation that includes the optional nested-name-specifier
-/// (\p SS). Otherwise, the annotation token is a template-id
-/// annotation that does not include the optional
-/// nested-name-specifier.
-///
-/// \param Template  the declaration of the template named by the first
-/// token (an identifier), as returned from \c Action::isTemplateName().
-///
-/// \param TNK the kind of template that \p Template
-/// refers to, as returned from \c Action::isTemplateName().
-///
-/// \param SS if non-NULL, the nested-name-specifier that precedes
-/// this template name.
-///
-/// \param TemplateKWLoc if valid, specifies that this template-id
-/// annotation was preceded by the 'template' keyword and gives the
-/// location of that keyword. If invalid (the default), then this
-/// template-id was not preceded by a 'template' keyword.
-///
-/// \param AllowTypeAnnotation if true (the default), then a
-/// simple-template-id that refers to a class template, template
-/// template parameter, or other template that produces a type will be
-/// replaced with a type annotation token. Otherwise, the
-/// simple-template-id is always replaced with a template-id
-/// annotation token.
-///
-/// If an unrecoverable parse error occurs and no annotation token can be
-/// formed, this function returns true.
-///
-bool Parser::AnnotateTemplateIdToken(TemplateTy Template, TemplateNameKind TNK,
-                                     CXXScopeSpec &SS,
-                                     SourceLocation TemplateKWLoc,
-                                     UnqualifiedId &TemplateName,
-                                     bool AllowTypeAnnotation) {
-  assert(getLangOpts().CPlusPlus && "Can only annotate template-ids in C++");
-  assert(Template && Tok.is(tok::less) &&
-         "Parser isn't at the beginning of a template-id");
-
-  // Consume the template-name.
-  SourceLocation TemplateNameLoc = TemplateName.getSourceRange().getBegin();
-
-  // Parse the enclosed template argument list.
-  SourceLocation LAngleLoc, RAngleLoc;
-  TemplateArgList TemplateArgs;
-  bool Invalid = ParseTemplateIdAfterTemplateName(Template, 
-                                                  TemplateNameLoc,
-                                                  SS, false, LAngleLoc,
-                                                  TemplateArgs,
-                                                  RAngleLoc);
-
-  if (Invalid) {
-    // If we failed to parse the template ID but skipped ahead to a >, we're not
-    // going to be able to form a token annotation.  Eat the '>' if present.
-    if (Tok.is(tok::greater))
-      ConsumeToken();
-    return true;
-  }
-
-  ASTTemplateArgsPtr TemplateArgsPtr(TemplateArgs);
-
-  // Build the annotation token.
-  if (TNK == TNK_Type_template && AllowTypeAnnotation) {
-    TypeResult Type
-      = Actions.ActOnTemplateIdType(SS, TemplateKWLoc,
-                                    Template, TemplateNameLoc,
-                                    LAngleLoc, TemplateArgsPtr, RAngleLoc);
-    if (Type.isInvalid()) {
-      // If we failed to parse the template ID but skipped ahead to a >, we're not
-      // going to be able to form a token annotation.  Eat the '>' if present.
-      if (Tok.is(tok::greater))
-        ConsumeToken();
-      return true;
-    }
-
-    Tok.setKind(tok::annot_typename);
-    setTypeAnnotation(Tok, Type.get());
-    if (SS.isNotEmpty())
-      Tok.setLocation(SS.getBeginLoc());
-    else if (TemplateKWLoc.isValid())
-      Tok.setLocation(TemplateKWLoc);
-    else
-      Tok.setLocation(TemplateNameLoc);
-  } else {
-    // Build a template-id annotation token that can be processed
-    // later.
-    Tok.setKind(tok::annot_template_id);
-    TemplateIdAnnotation *TemplateId
-      = TemplateIdAnnotation::Allocate(TemplateArgs.size(), TemplateIds);
-    TemplateId->TemplateNameLoc = TemplateNameLoc;
-    if (TemplateName.getKind() == UnqualifiedId::IK_Identifier) {
-      TemplateId->Name = TemplateName.Identifier;
-      TemplateId->Operator = OO_None;
-    } else {
-      TemplateId->Name = 0;
-      TemplateId->Operator = TemplateName.OperatorFunctionId.Operator;
-    }
-    TemplateId->SS = SS;
-    TemplateId->TemplateKWLoc = TemplateKWLoc;
-    TemplateId->Template = Template;
-    TemplateId->Kind = TNK;
-    TemplateId->LAngleLoc = LAngleLoc;
-    TemplateId->RAngleLoc = RAngleLoc;
-    ParsedTemplateArgument *Args = TemplateId->getTemplateArgs();
-    for (unsigned Arg = 0, ArgEnd = TemplateArgs.size(); Arg != ArgEnd; ++Arg)
-      Args[Arg] = ParsedTemplateArgument(TemplateArgs[Arg]);
-    Tok.setAnnotationValue(TemplateId);
-    if (TemplateKWLoc.isValid())
-      Tok.setLocation(TemplateKWLoc);
-    else
-      Tok.setLocation(TemplateNameLoc);
-  }
-
-  // Common fields for the annotation token
-  Tok.setAnnotationEndLoc(RAngleLoc);
-
-  // In case the tokens were cached, have Preprocessor replace them with the
-  // annotation token.
-  PP.AnnotateCachedTokens(Tok);
-  return false;
-}
-
-/// \brief Replaces a template-id annotation token with a type
-/// annotation token.
-///
-/// If there was a failure when forming the type from the template-id,
-/// a type annotation token will still be created, but will have a
-/// NULL type pointer to signify an error.
-void Parser::AnnotateTemplateIdTokenAsType() {
-  assert(Tok.is(tok::annot_template_id) && "Requires template-id tokens");
-
-  TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
-  assert((TemplateId->Kind == TNK_Type_template ||
-          TemplateId->Kind == TNK_Dependent_template_name) &&
-         "Only works for type and dependent templates");
-
-  ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(),
-                                     TemplateId->NumArgs);
-
-  TypeResult Type
-    = Actions.ActOnTemplateIdType(TemplateId->SS,
-                                  TemplateId->TemplateKWLoc,
-                                  TemplateId->Template,
-                                  TemplateId->TemplateNameLoc,
-                                  TemplateId->LAngleLoc,
-                                  TemplateArgsPtr,
-                                  TemplateId->RAngleLoc);
-  // Create the new "type" annotation token.
-  Tok.setKind(tok::annot_typename);
-  setTypeAnnotation(Tok, Type.isInvalid() ? ParsedType() : Type.get());
-  if (TemplateId->SS.isNotEmpty()) // it was a C++ qualified type name.
-    Tok.setLocation(TemplateId->SS.getBeginLoc());
-  // End location stays the same
-
-  // Replace the template-id annotation token, and possible the scope-specifier
-  // that precedes it, with the typename annotation token.
-  PP.AnnotateCachedTokens(Tok);
-}
-
-/// \brief Determine whether the given token can end a template argument.
-static bool isEndOfTemplateArgument(Token Tok) {
-  return Tok.is(tok::comma) || Tok.is(tok::greater) || 
-         Tok.is(tok::greatergreater);
-}
-
-/// \brief Parse a C++ template template argument.
-ParsedTemplateArgument Parser::ParseTemplateTemplateArgument() {
-  if (!Tok.is(tok::identifier) && !Tok.is(tok::coloncolon) &&
-      !Tok.is(tok::annot_cxxscope))
-    return ParsedTemplateArgument();
-
-  // C++0x [temp.arg.template]p1:
-  //   A template-argument for a template template-parameter shall be the name
-  //   of a class template or an alias template, expressed as id-expression.
-  //   
-  // We parse an id-expression that refers to a class template or alias
-  // template. The grammar we parse is:
-  //
-  //   nested-name-specifier[opt] template[opt] identifier ...[opt]
-  //
-  // followed by a token that terminates a template argument, such as ',', 
-  // '>', or (in some cases) '>>'.
-  CXXScopeSpec SS; // nested-name-specifier, if present
-  ParseOptionalCXXScopeSpecifier(SS, ParsedType(),
-                                 /*EnteringContext=*/false);
-  
-  ParsedTemplateArgument Result;
-  SourceLocation EllipsisLoc;
-  if (SS.isSet() && Tok.is(tok::kw_template)) {
-    // Parse the optional 'template' keyword following the 
-    // nested-name-specifier.
-    SourceLocation TemplateKWLoc = ConsumeToken();
-    
-    if (Tok.is(tok::identifier)) {
-      // We appear to have a dependent template name.
-      UnqualifiedId Name;
-      Name.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
-      ConsumeToken(); // the identifier
-      
-      // Parse the ellipsis.
-      if (Tok.is(tok::ellipsis))
-        EllipsisLoc = ConsumeToken();
-      
-      // If the next token signals the end of a template argument,
-      // then we have a dependent template name that could be a template
-      // template argument.
-      TemplateTy Template;
-      if (isEndOfTemplateArgument(Tok) &&
-          Actions.ActOnDependentTemplateName(getCurScope(),
-                                             SS, TemplateKWLoc, Name,
-                                             /*ObjectType=*/ ParsedType(),
-                                             /*EnteringContext=*/false,
-                                             Template))
-        Result = ParsedTemplateArgument(SS, Template, Name.StartLocation);
-    }
-  } else if (Tok.is(tok::identifier)) {
-    // We may have a (non-dependent) template name.
-    TemplateTy Template;
-    UnqualifiedId Name;
-    Name.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
-    ConsumeToken(); // the identifier
-    
-    // Parse the ellipsis.
-    if (Tok.is(tok::ellipsis))
-      EllipsisLoc = ConsumeToken();
-
-    if (isEndOfTemplateArgument(Tok)) {
-      bool MemberOfUnknownSpecialization;
-      TemplateNameKind TNK = Actions.isTemplateName(getCurScope(), SS,
-                                               /*hasTemplateKeyword=*/false,
-                                                    Name,
-                                               /*ObjectType=*/ ParsedType(), 
-                                                    /*EnteringContext=*/false, 
-                                                    Template,
-                                                MemberOfUnknownSpecialization);
-      if (TNK == TNK_Dependent_template_name || TNK == TNK_Type_template) {
-        // We have an id-expression that refers to a class template or
-        // (C++0x) alias template. 
-        Result = ParsedTemplateArgument(SS, Template, Name.StartLocation);
-      }
-    }
-  }
-  
-  // If this is a pack expansion, build it as such.
-  if (EllipsisLoc.isValid() && !Result.isInvalid())
-    Result = Actions.ActOnPackExpansion(Result, EllipsisLoc);
-  
-  return Result;
-}
-
-/// ParseTemplateArgument - Parse a C++ template argument (C++ [temp.names]).
-///
-///       template-argument: [C++ 14.2]
-///         constant-expression
-///         type-id
-///         id-expression
-ParsedTemplateArgument Parser::ParseTemplateArgument() {
-  // C++ [temp.arg]p2:
-  //   In a template-argument, an ambiguity between a type-id and an
-  //   expression is resolved to a type-id, regardless of the form of
-  //   the corresponding template-parameter.
-  //
-  // Therefore, we initially try to parse a type-id.  
-  if (isCXXTypeId(TypeIdAsTemplateArgument)) {
-    SourceLocation Loc = Tok.getLocation();
-    TypeResult TypeArg = ParseTypeName(/*Range=*/0, 
-                                       Declarator::TemplateTypeArgContext);
-    if (TypeArg.isInvalid())
-      return ParsedTemplateArgument();
-    
-    return ParsedTemplateArgument(ParsedTemplateArgument::Type,
-                                  TypeArg.get().getAsOpaquePtr(), 
-                                  Loc);
-  }
-  
-  // Try to parse a template template argument.
-  {
-    TentativeParsingAction TPA(*this);
-
-    ParsedTemplateArgument TemplateTemplateArgument
-      = ParseTemplateTemplateArgument();
-    if (!TemplateTemplateArgument.isInvalid()) {
-      TPA.Commit();
-      return TemplateTemplateArgument;
-    }
-    
-    // Revert this tentative parse to parse a non-type template argument.
-    TPA.Revert();
-  }
-  
-  // Parse a non-type template argument. 
-  SourceLocation Loc = Tok.getLocation();
-  ExprResult ExprArg = ParseConstantExpression(MaybeTypeCast);
-  if (ExprArg.isInvalid() || !ExprArg.get())
-    return ParsedTemplateArgument();
-
-  return ParsedTemplateArgument(ParsedTemplateArgument::NonType, 
-                                ExprArg.release(), Loc);
-}
-
-/// \brief Determine whether the current tokens can only be parsed as a 
-/// template argument list (starting with the '<') and never as a '<' 
-/// expression.
-bool Parser::IsTemplateArgumentList(unsigned Skip) {
-  struct AlwaysRevertAction : TentativeParsingAction {
-    AlwaysRevertAction(Parser &P) : TentativeParsingAction(P) { }
-    ~AlwaysRevertAction() { Revert(); }
-  } Tentative(*this);
-  
-  while (Skip) {
-    ConsumeToken();
-    --Skip;
-  }
-  
-  // '<'
-  if (!Tok.is(tok::less))
-    return false;
-  ConsumeToken();
-
-  // An empty template argument list.
-  if (Tok.is(tok::greater))
-    return true;
-  
-  // See whether we have declaration specifiers, which indicate a type.
-  while (isCXXDeclarationSpecifier() == TPResult::True())
-    ConsumeToken();
-  
-  // If we have a '>' or a ',' then this is a template argument list.
-  return Tok.is(tok::greater) || Tok.is(tok::comma);
-}
-
-/// ParseTemplateArgumentList - Parse a C++ template-argument-list
-/// (C++ [temp.names]). Returns true if there was an error.
-///
-///       template-argument-list: [C++ 14.2]
-///         template-argument
-///         template-argument-list ',' template-argument
-bool
-Parser::ParseTemplateArgumentList(TemplateArgList &TemplateArgs) {
-  // Template argument lists are constant-evaluation contexts.
-  EnterExpressionEvaluationContext EvalContext(Actions,Sema::ConstantEvaluated);
-
-  while (true) {
-    ParsedTemplateArgument Arg = ParseTemplateArgument();
-    if (Tok.is(tok::ellipsis)) {
-      SourceLocation EllipsisLoc  = ConsumeToken();
-      Arg = Actions.ActOnPackExpansion(Arg, EllipsisLoc);
-    }
-
-    if (Arg.isInvalid()) {
-      SkipUntil(tok::comma, tok::greater, true, true);
-      return true;
-    }
-
-    // Save this template argument.
-    TemplateArgs.push_back(Arg);
-      
-    // If the next token is a comma, consume it and keep reading
-    // arguments.
-    if (Tok.isNot(tok::comma)) break;
-
-    // Consume the comma.
-    ConsumeToken();
-  }
-
-  return false;
-}
-
-/// \brief Parse a C++ explicit template instantiation
-/// (C++ [temp.explicit]).
-///
-///       explicit-instantiation:
-///         'extern' [opt] 'template' declaration
-///
-/// Note that the 'extern' is a GNU extension and C++11 feature.
-Decl *Parser::ParseExplicitInstantiation(unsigned Context,
-                                         SourceLocation ExternLoc,
-                                         SourceLocation TemplateLoc,
-                                         SourceLocation &DeclEnd,
-                                         AccessSpecifier AS) {
-  // This isn't really required here.
-  ParsingDeclRAIIObject
-    ParsingTemplateParams(*this, ParsingDeclRAIIObject::NoParent);
-
-  return ParseSingleDeclarationAfterTemplate(Context,
-                                             ParsedTemplateInfo(ExternLoc,
-                                                                TemplateLoc),
-                                             ParsingTemplateParams,
-                                             DeclEnd, AS);
-}
-
-SourceRange Parser::ParsedTemplateInfo::getSourceRange() const {
-  if (TemplateParams)
-    return getTemplateParamsRange(TemplateParams->data(),
-                                  TemplateParams->size());
-
-  SourceRange R(TemplateLoc);
-  if (ExternLoc.isValid())
-    R.setBegin(ExternLoc);
-  return R;
-}
-
-void Parser::LateTemplateParserCallback(void *P, const FunctionDecl *FD) {
-  ((Parser*)P)->LateTemplateParser(FD);
-}
-
-
-void Parser::LateTemplateParser(const FunctionDecl *FD) {
-  LateParsedTemplatedFunction *LPT = LateParsedTemplateMap[FD];
-  if (LPT) {
-    ParseLateTemplatedFuncDef(*LPT);
-    return;
-  }
-
-  llvm_unreachable("Late templated function without associated lexed tokens");
-}
-
-/// \brief Late parse a C++ function template in Microsoft mode.
-void Parser::ParseLateTemplatedFuncDef(LateParsedTemplatedFunction &LMT) {
-  if(!LMT.D)
-     return;
-
-  // Get the FunctionDecl.
-  FunctionTemplateDecl *FunTmplD = dyn_cast<FunctionTemplateDecl>(LMT.D);
-  FunctionDecl *FunD =
-      FunTmplD ? FunTmplD->getTemplatedDecl() : cast<FunctionDecl>(LMT.D);
-  // Track template parameter depth.
-  TemplateParameterDepthRAII CurTemplateDepthTracker(TemplateParameterDepth);
-
-  // To restore the context after late parsing.
-  Sema::ContextRAII GlobalSavedContext(Actions, Actions.CurContext);
-
-  SmallVector<ParseScope*, 4> TemplateParamScopeStack;
-
-  // Get the list of DeclContexts to reenter.
-  SmallVector<DeclContext*, 4> DeclContextsToReenter;
-  DeclContext *DD = FunD->getLexicalParent();
-  while (DD && !DD->isTranslationUnit()) {
-    DeclContextsToReenter.push_back(DD);
-    DD = DD->getLexicalParent();
-  }
-
-  // Reenter template scopes from outermost to innermost.
-  SmallVector<DeclContext*, 4>::reverse_iterator II =
-      DeclContextsToReenter.rbegin();
-  for (; II != DeclContextsToReenter.rend(); ++II) {
-    if (ClassTemplatePartialSpecializationDecl *MD =
-            dyn_cast_or_null<ClassTemplatePartialSpecializationDecl>(*II)) {
-      TemplateParamScopeStack.push_back(
-          new ParseScope(this, Scope::TemplateParamScope));
-      Actions.ActOnReenterTemplateScope(getCurScope(), MD);
-      ++CurTemplateDepthTracker;
-    } else if (CXXRecordDecl *MD = dyn_cast_or_null<CXXRecordDecl>(*II)) {
-      bool ManageScope = MD->getDescribedClassTemplate() != 0;
-      TemplateParamScopeStack.push_back(
-          new ParseScope(this, Scope::TemplateParamScope, ManageScope));
-      Actions.ActOnReenterTemplateScope(getCurScope(),
-                                        MD->getDescribedClassTemplate());
-      ++CurTemplateDepthTracker;
-    }
-    TemplateParamScopeStack.push_back(new ParseScope(this, Scope::DeclScope));
-    Actions.PushDeclContext(Actions.getCurScope(), *II);
-  }
-  TemplateParamScopeStack.push_back(
-      new ParseScope(this, Scope::TemplateParamScope));
-
-  DeclaratorDecl *Declarator = dyn_cast<DeclaratorDecl>(FunD);
-  if (Declarator && Declarator->getNumTemplateParameterLists() != 0) {
-    Actions.ActOnReenterDeclaratorTemplateScope(getCurScope(), Declarator);
-    ++CurTemplateDepthTracker;
-  }
-  Actions.ActOnReenterTemplateScope(getCurScope(), LMT.D);
-  ++CurTemplateDepthTracker;
-
-  assert(!LMT.Toks.empty() && "Empty body!");
-
-  // Append the current token at the end of the new token stream so that it
-  // doesn't get lost.
-  LMT.Toks.push_back(Tok);
-  PP.EnterTokenStream(LMT.Toks.data(), LMT.Toks.size(), true, false);
-
-  // Consume the previously pushed token.
-  ConsumeAnyToken(/*ConsumeCodeCompletionTok=*/true);
-  assert((Tok.is(tok::l_brace) || Tok.is(tok::colon) || Tok.is(tok::kw_try))
-         && "Inline method not starting with '{', ':' or 'try'");
-
-  // Parse the method body. Function body parsing code is similar enough
-  // to be re-used for method bodies as well.
-  ParseScope FnScope(this, Scope::FnScope|Scope::DeclScope);
-
-  // Recreate the containing function DeclContext.
-  Sema::ContextRAII FunctionSavedContext(Actions, Actions.getContainingDC(FunD));
-
-  Actions.ActOnStartOfFunctionDef(getCurScope(), FunD);
-
-  if (Tok.is(tok::kw_try)) {
-    ParseFunctionTryBlock(LMT.D, FnScope);
-  } else {
-    if (Tok.is(tok::colon))
-      ParseConstructorInitializer(LMT.D);
-    else
-      Actions.ActOnDefaultCtorInitializers(LMT.D);
-
-    if (Tok.is(tok::l_brace)) {
-      assert((!FunTmplD || FunTmplD->getTemplateParameters()->getDepth() <
-                               TemplateParameterDepth) &&
-             "TemplateParameterDepth should be greater than the depth of "
-             "current template being instantiated!");
-      ParseFunctionStatementBody(LMT.D, FnScope);
-      Actions.MarkAsLateParsedTemplate(FunD, false);
-    } else
-      Actions.ActOnFinishFunctionBody(LMT.D, 0);
-  }
-
-  // Exit scopes.
-  FnScope.Exit();
-  SmallVector<ParseScope*, 4>::reverse_iterator I =
-   TemplateParamScopeStack.rbegin();
-  for (; I != TemplateParamScopeStack.rend(); ++I)
-    delete *I;
-
-  DeclGroupPtrTy grp = Actions.ConvertDeclToDeclGroup(LMT.D);
-  if (grp)
-    Actions.getASTConsumer().HandleTopLevelDecl(grp.get());
-}
-
-/// \brief Lex a delayed template function for late parsing.
-void Parser::LexTemplateFunctionForLateParsing(CachedTokens &Toks) {
-  tok::TokenKind kind = Tok.getKind();
-  if (!ConsumeAndStoreFunctionPrologue(Toks)) {
-    // Consume everything up to (and including) the matching right brace.
-    ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false);
-  }
-
-  // If we're in a function-try-block, we need to store all the catch blocks.
-  if (kind == tok::kw_try) {
-    while (Tok.is(tok::kw_catch)) {
-      ConsumeAndStoreUntil(tok::l_brace, Toks, /*StopAtSemi=*/false);
-      ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false);
-    }
-  }
-}
+//===--- ParseTemplate.cpp - Template Parsing -----------------------------===//\r
+//\r
+//                     The LLVM Compiler Infrastructure\r
+//\r
+// This file is distributed under the University of Illinois Open Source\r
+// License. See LICENSE.TXT for details.\r
+//\r
+//===----------------------------------------------------------------------===//\r
+//\r
+//  This file implements parsing of C++ templates.\r
+//\r
+//===----------------------------------------------------------------------===//\r
+\r
+#include "clang/Parse/Parser.h"\r
+#include "RAIIObjectsForParser.h"\r
+#include "clang/AST/ASTConsumer.h"\r
+#include "clang/AST/DeclTemplate.h"\r
+#include "clang/Parse/ParseDiagnostic.h"\r
+#include "clang/Sema/DeclSpec.h"\r
+#include "clang/Sema/ParsedTemplate.h"\r
+#include "clang/Sema/Scope.h"\r
+using namespace clang;\r
+\r
+/// \brief Parse a template declaration, explicit instantiation, or\r
+/// explicit specialization.\r
+Decl *\r
+Parser::ParseDeclarationStartingWithTemplate(unsigned Context,\r
+                                             SourceLocation &DeclEnd,\r
+                                             AccessSpecifier AS,\r
+                                             AttributeList *AccessAttrs) {\r
+  ObjCDeclContextSwitch ObjCDC(*this);\r
+  \r
+  if (Tok.is(tok::kw_template) && NextToken().isNot(tok::less)) {\r
+    return ParseExplicitInstantiation(Context,\r
+                                      SourceLocation(), ConsumeToken(),\r
+                                      DeclEnd, AS);\r
+  }\r
+  return ParseTemplateDeclarationOrSpecialization(Context, DeclEnd, AS,\r
+                                                  AccessAttrs);\r
+}\r
+\r
+\r
+\r
+/// \brief Parse a template declaration or an explicit specialization.\r
+///\r
+/// Template declarations include one or more template parameter lists\r
+/// and either the function or class template declaration. Explicit\r
+/// specializations contain one or more 'template < >' prefixes\r
+/// followed by a (possibly templated) declaration. Since the\r
+/// syntactic form of both features is nearly identical, we parse all\r
+/// of the template headers together and let semantic analysis sort\r
+/// the declarations from the explicit specializations.\r
+///\r
+///       template-declaration: [C++ temp]\r
+///         'export'[opt] 'template' '<' template-parameter-list '>' declaration\r
+///\r
+///       explicit-specialization: [ C++ temp.expl.spec]\r
+///         'template' '<' '>' declaration\r
+Decl *\r
+Parser::ParseTemplateDeclarationOrSpecialization(unsigned Context,\r
+                                                 SourceLocation &DeclEnd,\r
+                                                 AccessSpecifier AS,\r
+                                                 AttributeList *AccessAttrs) {\r
+  assert((Tok.is(tok::kw_export) || Tok.is(tok::kw_template)) &&\r
+         "Token does not start a template declaration.");\r
+\r
+  // Enter template-parameter scope.\r
+  ParseScope TemplateParmScope(this, Scope::TemplateParamScope);\r
+\r
+  // Tell the action that names should be checked in the context of\r
+  // the declaration to come.\r
+  ParsingDeclRAIIObject\r
+    ParsingTemplateParams(*this, ParsingDeclRAIIObject::NoParent);\r
+\r
+  // Parse multiple levels of template headers within this template\r
+  // parameter scope, e.g.,\r
+  //\r
+  //   template<typename T>\r
+  //     template<typename U>\r
+  //       class A<T>::B { ... };\r
+  //\r
+  // We parse multiple levels non-recursively so that we can build a\r
+  // single data structure containing all of the template parameter\r
+  // lists to easily differentiate between the case above and:\r
+  //\r
+  //   template<typename T>\r
+  //   class A {\r
+  //     template<typename U> class B;\r
+  //   };\r
+  //\r
+  // In the first case, the action for declaring A<T>::B receives\r
+  // both template parameter lists. In the second case, the action for\r
+  // defining A<T>::B receives just the inner template parameter list\r
+  // (and retrieves the outer template parameter list from its\r
+  // context).\r
+  bool isSpecialization = true;\r
+  bool LastParamListWasEmpty = false;\r
+  TemplateParameterLists ParamLists;\r
+  TemplateParameterDepthRAII CurTemplateDepthTracker(TemplateParameterDepth);\r
+\r
+  do {\r
+    // Consume the 'export', if any.\r
+    SourceLocation ExportLoc;\r
+    if (Tok.is(tok::kw_export)) {\r
+      ExportLoc = ConsumeToken();\r
+    }\r
+\r
+    // Consume the 'template', which should be here.\r
+    SourceLocation TemplateLoc;\r
+    if (Tok.is(tok::kw_template)) {\r
+      TemplateLoc = ConsumeToken();\r
+    } else {\r
+      Diag(Tok.getLocation(), diag::err_expected_template);\r
+      return 0;\r
+    }\r
+\r
+    // Parse the '<' template-parameter-list '>'\r
+    SourceLocation LAngleLoc, RAngleLoc;\r
+    SmallVector<Decl*, 4> TemplateParams;\r
+    if (ParseTemplateParameters(CurTemplateDepthTracker.getDepth(),\r
+                                TemplateParams, LAngleLoc, RAngleLoc)) {\r
+      // Skip until the semi-colon or a }.\r
+      SkipUntil(tok::r_brace, true, true);\r
+      if (Tok.is(tok::semi))\r
+        ConsumeToken();\r
+      return 0;\r
+    }\r
+\r
+    ParamLists.push_back(\r
+      Actions.ActOnTemplateParameterList(CurTemplateDepthTracker.getDepth(), \r
+                                         ExportLoc,\r
+                                         TemplateLoc, LAngleLoc,\r
+                                         TemplateParams.data(),\r
+                                         TemplateParams.size(), RAngleLoc));\r
+\r
+    if (!TemplateParams.empty()) {\r
+      isSpecialization = false;\r
+      ++CurTemplateDepthTracker;\r
+    } else {\r
+      LastParamListWasEmpty = true;\r
+    }\r
+  } while (Tok.is(tok::kw_export) || Tok.is(tok::kw_template));\r
+\r
+  // Parse the actual template declaration.\r
+  return ParseSingleDeclarationAfterTemplate(Context,\r
+                                             ParsedTemplateInfo(&ParamLists,\r
+                                                             isSpecialization,\r
+                                                         LastParamListWasEmpty),\r
+                                             ParsingTemplateParams,\r
+                                             DeclEnd, AS, AccessAttrs);\r
+}\r
+\r
+/// \brief Parse a single declaration that declares a template,\r
+/// template specialization, or explicit instantiation of a template.\r
+///\r
+/// \param DeclEnd will receive the source location of the last token\r
+/// within this declaration.\r
+///\r
+/// \param AS the access specifier associated with this\r
+/// declaration. Will be AS_none for namespace-scope declarations.\r
+///\r
+/// \returns the new declaration.\r
+Decl *\r
+Parser::ParseSingleDeclarationAfterTemplate(\r
+                                       unsigned Context,\r
+                                       const ParsedTemplateInfo &TemplateInfo,\r
+                                       ParsingDeclRAIIObject &DiagsFromTParams,\r
+                                       SourceLocation &DeclEnd,\r
+                                       AccessSpecifier AS,\r
+                                       AttributeList *AccessAttrs) {\r
+  assert(TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate &&\r
+         "Template information required");\r
+\r
+  if (Context == Declarator::MemberContext) {\r
+    // We are parsing a member template.\r
+    ParseCXXClassMemberDeclaration(AS, AccessAttrs, TemplateInfo,\r
+                                   &DiagsFromTParams);\r
+    return 0;\r
+  }\r
+\r
+  ParsedAttributesWithRange prefixAttrs(AttrFactory);\r
+  MaybeParseCXX11Attributes(prefixAttrs);\r
+\r
+  if (Tok.is(tok::kw_using))\r
+    return ParseUsingDirectiveOrDeclaration(Context, TemplateInfo, DeclEnd,\r
+                                            prefixAttrs);\r
+\r
+  // Parse the declaration specifiers, stealing any diagnostics from\r
+  // the template parameters.\r
+  ParsingDeclSpec DS(*this, &DiagsFromTParams);\r
+\r
+  ParseDeclarationSpecifiers(DS, TemplateInfo, AS,\r
+                             getDeclSpecContextFromDeclaratorContext(Context));\r
+\r
+  if (Tok.is(tok::semi)) {\r
+    ProhibitAttributes(prefixAttrs);\r
+    DeclEnd = ConsumeToken();\r
+    Decl *Decl = Actions.ParsedFreeStandingDeclSpec(\r
+        getCurScope(), AS, DS,\r
+        TemplateInfo.TemplateParams ? *TemplateInfo.TemplateParams\r
+                                    : MultiTemplateParamsArg(),\r
+        TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation);\r
+    DS.complete(Decl);\r
+    return Decl;\r
+  }\r
+\r
+  // Move the attributes from the prefix into the DS.\r
+  if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation)\r
+    ProhibitAttributes(prefixAttrs);\r
+  else\r
+    DS.takeAttributesFrom(prefixAttrs);\r
+\r
+  // Parse the declarator.\r
+  ParsingDeclarator DeclaratorInfo(*this, DS, (Declarator::TheContext)Context);\r
+  ParseDeclarator(DeclaratorInfo);\r
+  // Error parsing the declarator?\r
+  if (!DeclaratorInfo.hasName()) {\r
+    // If so, skip until the semi-colon or a }.\r
+    SkipUntil(tok::r_brace, true, true);\r
+    if (Tok.is(tok::semi))\r
+      ConsumeToken();\r
+    return 0;\r
+  }\r
+\r
+  LateParsedAttrList LateParsedAttrs(true);\r
+  if (DeclaratorInfo.isFunctionDeclarator())\r
+    MaybeParseGNUAttributes(DeclaratorInfo, &LateParsedAttrs);\r
+\r
+  if (DeclaratorInfo.isFunctionDeclarator() &&\r
+      isStartOfFunctionDefinition(DeclaratorInfo)) {\r
+    if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {\r
+      // Recover by ignoring the 'typedef'. This was probably supposed to be\r
+      // the 'typename' keyword, which we should have already suggested adding\r
+      // if it's appropriate.\r
+      Diag(DS.getStorageClassSpecLoc(), diag::err_function_declared_typedef)\r
+        << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc());\r
+      DS.ClearStorageClassSpecs();\r
+    }\r
+    return ParseFunctionDefinition(DeclaratorInfo, TemplateInfo,\r
+                                   &LateParsedAttrs);\r
+  }\r
+\r
+  // Parse this declaration.\r
+  Decl *ThisDecl = ParseDeclarationAfterDeclarator(DeclaratorInfo,\r
+                                                   TemplateInfo);\r
+\r
+  if (Tok.is(tok::comma)) {\r
+    Diag(Tok, diag::err_multiple_template_declarators)\r
+      << (int)TemplateInfo.Kind;\r
+    SkipUntil(tok::semi, true, false);\r
+    return ThisDecl;\r
+  }\r
+\r
+  // Eat the semi colon after the declaration.\r
+  ExpectAndConsumeSemi(diag::err_expected_semi_declaration);\r
+  if (LateParsedAttrs.size() > 0)\r
+    ParseLexedAttributeList(LateParsedAttrs, ThisDecl, true, false);\r
+  DeclaratorInfo.complete(ThisDecl);\r
+  return ThisDecl;\r
+}\r
+\r
+/// ParseTemplateParameters - Parses a template-parameter-list enclosed in\r
+/// angle brackets. Depth is the depth of this template-parameter-list, which\r
+/// is the number of template headers directly enclosing this template header.\r
+/// TemplateParams is the current list of template parameters we're building.\r
+/// The template parameter we parse will be added to this list. LAngleLoc and\r
+/// RAngleLoc will receive the positions of the '<' and '>', respectively,\r
+/// that enclose this template parameter list.\r
+///\r
+/// \returns true if an error occurred, false otherwise.\r
+bool Parser::ParseTemplateParameters(unsigned Depth,\r
+                               SmallVectorImpl<Decl*> &TemplateParams,\r
+                                     SourceLocation &LAngleLoc,\r
+                                     SourceLocation &RAngleLoc) {\r
+  // Get the template parameter list.\r
+  if (!Tok.is(tok::less)) {\r
+    Diag(Tok.getLocation(), diag::err_expected_less_after) << "template";\r
+    return true;\r
+  }\r
+  LAngleLoc = ConsumeToken();\r
+\r
+  // Try to parse the template parameter list.\r
+  bool Failed = false;\r
+  if (!Tok.is(tok::greater) && !Tok.is(tok::greatergreater))\r
+    Failed = ParseTemplateParameterList(Depth, TemplateParams);\r
+\r
+  if (Tok.is(tok::greatergreater)) {\r
+    // No diagnostic required here: a template-parameter-list can only be\r
+    // followed by a declaration or, for a template template parameter, the\r
+    // 'class' keyword. Therefore, the second '>' will be diagnosed later.\r
+    // This matters for elegant diagnosis of:\r
+    //   template<template<typename>> struct S;\r
+    Tok.setKind(tok::greater);\r
+    RAngleLoc = Tok.getLocation();\r
+    Tok.setLocation(Tok.getLocation().getLocWithOffset(1));\r
+  } else if (Tok.is(tok::greater))\r
+    RAngleLoc = ConsumeToken();\r
+  else if (Failed) {\r
+    Diag(Tok.getLocation(), diag::err_expected_greater);\r
+    return true;\r
+  }\r
+  return false;\r
+}\r
+\r
+/// ParseTemplateParameterList - Parse a template parameter list. If\r
+/// the parsing fails badly (i.e., closing bracket was left out), this\r
+/// will try to put the token stream in a reasonable position (closing\r
+/// a statement, etc.) and return false.\r
+///\r
+///       template-parameter-list:    [C++ temp]\r
+///         template-parameter\r
+///         template-parameter-list ',' template-parameter\r
+bool\r
+Parser::ParseTemplateParameterList(unsigned Depth,\r
+                             SmallVectorImpl<Decl*> &TemplateParams) {\r
+  while (1) {\r
+    if (Decl *TmpParam\r
+          = ParseTemplateParameter(Depth, TemplateParams.size())) {\r
+      TemplateParams.push_back(TmpParam);\r
+    } else {\r
+      // If we failed to parse a template parameter, skip until we find\r
+      // a comma or closing brace.\r
+      SkipUntil(tok::comma, tok::greater, tok::greatergreater, true, true);\r
+    }\r
+\r
+    // Did we find a comma or the end of the template parameter list?\r
+    if (Tok.is(tok::comma)) {\r
+      ConsumeToken();\r
+    } else if (Tok.is(tok::greater) || Tok.is(tok::greatergreater)) {\r
+      // Don't consume this... that's done by template parser.\r
+      break;\r
+    } else {\r
+      // Somebody probably forgot to close the template. Skip ahead and\r
+      // try to get out of the expression. This error is currently\r
+      // subsumed by whatever goes on in ParseTemplateParameter.\r
+      Diag(Tok.getLocation(), diag::err_expected_comma_greater);\r
+      SkipUntil(tok::comma, tok::greater, tok::greatergreater, true, true);\r
+      return false;\r
+    }\r
+  }\r
+  return true;\r
+}\r
+\r
+/// \brief Determine whether the parser is at the start of a template\r
+/// type parameter.\r
+bool Parser::isStartOfTemplateTypeParameter() {\r
+  if (Tok.is(tok::kw_class)) {\r
+    // "class" may be the start of an elaborated-type-specifier or a\r
+    // type-parameter. Per C++ [temp.param]p3, we prefer the type-parameter.\r
+    switch (NextToken().getKind()) {\r
+    case tok::equal:\r
+    case tok::comma:\r
+    case tok::greater:\r
+    case tok::greatergreater:\r
+    case tok::ellipsis:\r
+      return true;\r
+        \r
+    case tok::identifier:\r
+      // This may be either a type-parameter or an elaborated-type-specifier. \r
+      // We have to look further.\r
+      break;\r
+        \r
+    default:\r
+      return false;\r
+    }\r
+    \r
+    switch (GetLookAheadToken(2).getKind()) {\r
+    case tok::equal:\r
+    case tok::comma:\r
+    case tok::greater:\r
+    case tok::greatergreater:\r
+      return true;\r
+      \r
+    default:\r
+      return false;\r
+    }\r
+  }\r
+\r
+  if (Tok.isNot(tok::kw_typename))\r
+    return false;\r
+\r
+  // C++ [temp.param]p2:\r
+  //   There is no semantic difference between class and typename in a\r
+  //   template-parameter. typename followed by an unqualified-id\r
+  //   names a template type parameter. typename followed by a\r
+  //   qualified-id denotes the type in a non-type\r
+  //   parameter-declaration.\r
+  Token Next = NextToken();\r
+\r
+  // If we have an identifier, skip over it.\r
+  if (Next.getKind() == tok::identifier)\r
+    Next = GetLookAheadToken(2);\r
+\r
+  switch (Next.getKind()) {\r
+  case tok::equal:\r
+  case tok::comma:\r
+  case tok::greater:\r
+  case tok::greatergreater:\r
+  case tok::ellipsis:\r
+    return true;\r
+\r
+  default:\r
+    return false;\r
+  }\r
+}\r
+\r
+/// ParseTemplateParameter - Parse a template-parameter (C++ [temp.param]).\r
+///\r
+///       template-parameter: [C++ temp.param]\r
+///         type-parameter\r
+///         parameter-declaration\r
+///\r
+///       type-parameter: (see below)\r
+///         'class' ...[opt] identifier[opt]\r
+///         'class' identifier[opt] '=' type-id\r
+///         'typename' ...[opt] identifier[opt]\r
+///         'typename' identifier[opt] '=' type-id\r
+///         'template' '<' template-parameter-list '>' \r
+///               'class' ...[opt] identifier[opt]\r
+///         'template' '<' template-parameter-list '>' 'class' identifier[opt]\r
+///               = id-expression\r
+Decl *Parser::ParseTemplateParameter(unsigned Depth, unsigned Position) {\r
+  if (isStartOfTemplateTypeParameter())\r
+    return ParseTypeParameter(Depth, Position);\r
+\r
+  if (Tok.is(tok::kw_template))\r
+    return ParseTemplateTemplateParameter(Depth, Position);\r
+\r
+  // If it's none of the above, then it must be a parameter declaration.\r
+  // NOTE: This will pick up errors in the closure of the template parameter\r
+  // list (e.g., template < ; Check here to implement >> style closures.\r
+  return ParseNonTypeTemplateParameter(Depth, Position);\r
+}\r
+\r
+/// ParseTypeParameter - Parse a template type parameter (C++ [temp.param]).\r
+/// Other kinds of template parameters are parsed in\r
+/// ParseTemplateTemplateParameter and ParseNonTypeTemplateParameter.\r
+///\r
+///       type-parameter:     [C++ temp.param]\r
+///         'class' ...[opt][C++0x] identifier[opt]\r
+///         'class' identifier[opt] '=' type-id\r
+///         'typename' ...[opt][C++0x] identifier[opt]\r
+///         'typename' identifier[opt] '=' type-id\r
+Decl *Parser::ParseTypeParameter(unsigned Depth, unsigned Position) {\r
+  assert((Tok.is(tok::kw_class) || Tok.is(tok::kw_typename)) &&\r
+         "A type-parameter starts with 'class' or 'typename'");\r
+\r
+  // Consume the 'class' or 'typename' keyword.\r
+  bool TypenameKeyword = Tok.is(tok::kw_typename);\r
+  SourceLocation KeyLoc = ConsumeToken();\r
+\r
+  // Grab the ellipsis (if given).\r
+  bool Ellipsis = false;\r
+  SourceLocation EllipsisLoc;\r
+  if (Tok.is(tok::ellipsis)) {\r
+    Ellipsis = true;\r
+    EllipsisLoc = ConsumeToken();\r
+\r
+    Diag(EllipsisLoc,\r
+         getLangOpts().CPlusPlus11\r
+           ? diag::warn_cxx98_compat_variadic_templates\r
+           : diag::ext_variadic_templates);\r
+  }\r
+\r
+  // Grab the template parameter name (if given)\r
+  SourceLocation NameLoc;\r
+  IdentifierInfo* ParamName = 0;\r
+  if (Tok.is(tok::identifier)) {\r
+    ParamName = Tok.getIdentifierInfo();\r
+    NameLoc = ConsumeToken();\r
+  } else if (Tok.is(tok::equal) || Tok.is(tok::comma) ||\r
+             Tok.is(tok::greater) || Tok.is(tok::greatergreater)) {\r
+    // Unnamed template parameter. Don't have to do anything here, just\r
+    // don't consume this token.\r
+  } else {\r
+    Diag(Tok.getLocation(), diag::err_expected_ident);\r
+    return 0;\r
+  }\r
+\r
+  // Grab a default argument (if available).\r
+  // Per C++0x [basic.scope.pdecl]p9, we parse the default argument before\r
+  // we introduce the type parameter into the local scope.\r
+  SourceLocation EqualLoc;\r
+  ParsedType DefaultArg;\r
+  if (Tok.is(tok::equal)) {\r
+    EqualLoc = ConsumeToken();\r
+    DefaultArg = ParseTypeName(/*Range=*/0,\r
+                               Declarator::TemplateTypeArgContext).get();\r
+  }\r
+\r
+  return Actions.ActOnTypeParameter(getCurScope(), TypenameKeyword, Ellipsis, \r
+                                    EllipsisLoc, KeyLoc, ParamName, NameLoc,\r
+                                    Depth, Position, EqualLoc, DefaultArg);\r
+}\r
+\r
+/// ParseTemplateTemplateParameter - Handle the parsing of template\r
+/// template parameters.\r
+///\r
+///       type-parameter:    [C++ temp.param]\r
+///         'template' '<' template-parameter-list '>' 'class' \r
+///                  ...[opt] identifier[opt]\r
+///         'template' '<' template-parameter-list '>' 'class' identifier[opt] \r
+///                  = id-expression\r
+Decl *\r
+Parser::ParseTemplateTemplateParameter(unsigned Depth, unsigned Position) {\r
+  assert(Tok.is(tok::kw_template) && "Expected 'template' keyword");\r
+\r
+  // Handle the template <...> part.\r
+  SourceLocation TemplateLoc = ConsumeToken();\r
+  SmallVector<Decl*,8> TemplateParams;\r
+  SourceLocation LAngleLoc, RAngleLoc;\r
+  {\r
+    ParseScope TemplateParmScope(this, Scope::TemplateParamScope);\r
+    if (ParseTemplateParameters(Depth + 1, TemplateParams, LAngleLoc,\r
+                               RAngleLoc)) {\r
+      return 0;\r
+    }\r
+  }\r
+\r
+  // Generate a meaningful error if the user forgot to put class before the\r
+  // identifier, comma, or greater. Provide a fixit if the identifier, comma,\r
+  // or greater appear immediately or after 'typename' or 'struct'. In the\r
+  // latter case, replace the keyword with 'class'.\r
+  if (!Tok.is(tok::kw_class)) {\r
+    bool Replace = Tok.is(tok::kw_typename) || Tok.is(tok::kw_struct);\r
+    const Token& Next = Replace ? NextToken() : Tok;\r
+    if (Next.is(tok::identifier) || Next.is(tok::comma) ||\r
+        Next.is(tok::greater) || Next.is(tok::greatergreater) ||\r
+        Next.is(tok::ellipsis))\r
+      Diag(Tok.getLocation(), diag::err_class_on_template_template_param)\r
+        << (Replace ? FixItHint::CreateReplacement(Tok.getLocation(), "class")\r
+                    : FixItHint::CreateInsertion(Tok.getLocation(), "class "));\r
+    else\r
+      Diag(Tok.getLocation(), diag::err_class_on_template_template_param);\r
+\r
+    if (Replace)\r
+      ConsumeToken();\r
+  } else\r
+    ConsumeToken();\r
+\r
+  // Parse the ellipsis, if given.\r
+  SourceLocation EllipsisLoc;\r
+  if (Tok.is(tok::ellipsis)) {\r
+    EllipsisLoc = ConsumeToken();\r
+    \r
+    Diag(EllipsisLoc,\r
+         getLangOpts().CPlusPlus11\r
+           ? diag::warn_cxx98_compat_variadic_templates\r
+           : diag::ext_variadic_templates);\r
+  }\r
+      \r
+  // Get the identifier, if given.\r
+  SourceLocation NameLoc;\r
+  IdentifierInfo* ParamName = 0;\r
+  if (Tok.is(tok::identifier)) {\r
+    ParamName = Tok.getIdentifierInfo();\r
+    NameLoc = ConsumeToken();\r
+  } else if (Tok.is(tok::equal) || Tok.is(tok::comma) ||\r
+             Tok.is(tok::greater) || Tok.is(tok::greatergreater)) {\r
+    // Unnamed template parameter. Don't have to do anything here, just\r
+    // don't consume this token.\r
+  } else {\r
+    Diag(Tok.getLocation(), diag::err_expected_ident);\r
+    return 0;\r
+  }\r
+\r
+  TemplateParameterList *ParamList =\r
+    Actions.ActOnTemplateParameterList(Depth, SourceLocation(),\r
+                                       TemplateLoc, LAngleLoc,\r
+                                       TemplateParams.data(),\r
+                                       TemplateParams.size(),\r
+                                       RAngleLoc);\r
+\r
+  // Grab a default argument (if available).\r
+  // Per C++0x [basic.scope.pdecl]p9, we parse the default argument before\r
+  // we introduce the template parameter into the local scope.\r
+  SourceLocation EqualLoc;\r
+  ParsedTemplateArgument DefaultArg;\r
+  if (Tok.is(tok::equal)) {\r
+    EqualLoc = ConsumeToken();\r
+    DefaultArg = ParseTemplateTemplateArgument();\r
+    if (DefaultArg.isInvalid()) {\r
+      Diag(Tok.getLocation(), \r
+           diag::err_default_template_template_parameter_not_template);\r
+      SkipUntil(tok::comma, tok::greater, tok::greatergreater, true, true);\r
+    }\r
+  }\r
+  \r
+  return Actions.ActOnTemplateTemplateParameter(getCurScope(), TemplateLoc,\r
+                                                ParamList, EllipsisLoc, \r
+                                                ParamName, NameLoc, Depth, \r
+                                                Position, EqualLoc, DefaultArg);\r
+}\r
+\r
+/// ParseNonTypeTemplateParameter - Handle the parsing of non-type\r
+/// template parameters (e.g., in "template<int Size> class array;").\r
+///\r
+///       template-parameter:\r
+///         ...\r
+///         parameter-declaration\r
+Decl *\r
+Parser::ParseNonTypeTemplateParameter(unsigned Depth, unsigned Position) {\r
+  // Parse the declaration-specifiers (i.e., the type).\r
+  // FIXME: The type should probably be restricted in some way... Not all\r
+  // declarators (parts of declarators?) are accepted for parameters.\r
+  DeclSpec DS(AttrFactory);\r
+  ParseDeclarationSpecifiers(DS);\r
+\r
+  // Parse this as a typename.\r
+  Declarator ParamDecl(DS, Declarator::TemplateParamContext);\r
+  ParseDeclarator(ParamDecl);\r
+  if (DS.getTypeSpecType() == DeclSpec::TST_unspecified) {\r
+    Diag(Tok.getLocation(), diag::err_expected_template_parameter);\r
+    return 0;\r
+  }\r
+\r
+  // If there is a default value, parse it.\r
+  // Per C++0x [basic.scope.pdecl]p9, we parse the default argument before\r
+  // we introduce the template parameter into the local scope.\r
+  SourceLocation EqualLoc;\r
+  ExprResult DefaultArg;\r
+  if (Tok.is(tok::equal)) {\r
+    EqualLoc = ConsumeToken();\r
+\r
+    // C++ [temp.param]p15:\r
+    //   When parsing a default template-argument for a non-type\r
+    //   template-parameter, the first non-nested > is taken as the\r
+    //   end of the template-parameter-list rather than a greater-than\r
+    //   operator.\r
+    GreaterThanIsOperatorScope G(GreaterThanIsOperator, false);\r
+    EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated);\r
+\r
+    DefaultArg = ParseAssignmentExpression();\r
+    if (DefaultArg.isInvalid())\r
+      SkipUntil(tok::comma, tok::greater, true, true);\r
+  }\r
+\r
+  // Create the parameter.\r
+  return Actions.ActOnNonTypeTemplateParameter(getCurScope(), ParamDecl, \r
+                                               Depth, Position, EqualLoc, \r
+                                               DefaultArg.take());\r
+}\r
+\r
+/// \brief Parses a '>' at the end of a template list.\r
+///\r
+/// If this function encounters '>>', '>>>', '>=', or '>>=', it tries\r
+/// to determine if these tokens were supposed to be a '>' followed by\r
+/// '>', '>>', '>=', or '>='. It emits an appropriate diagnostic if necessary.\r
+///\r
+/// \param RAngleLoc the location of the consumed '>'.\r
+///\r
+/// \param ConsumeLastToken if true, the '>' is not consumed.\r
+bool Parser::ParseGreaterThanInTemplateList(SourceLocation &RAngleLoc,\r
+                                            bool ConsumeLastToken) {\r
+  // What will be left once we've consumed the '>'.\r
+  tok::TokenKind RemainingToken;\r
+  const char *ReplacementStr = "> >";\r
+\r
+  switch (Tok.getKind()) {\r
+  default:\r
+    Diag(Tok.getLocation(), diag::err_expected_greater);\r
+    return true;\r
+\r
+  case tok::greater:\r
+    // Determine the location of the '>' token. Only consume this token\r
+    // if the caller asked us to.\r
+    RAngleLoc = Tok.getLocation();\r
+    if (ConsumeLastToken)\r
+      ConsumeToken();\r
+    return false;\r
+\r
+  case tok::greatergreater:\r
+    RemainingToken = tok::greater;\r
+    break;\r
+\r
+  case tok::greatergreatergreater:\r
+    RemainingToken = tok::greatergreater;\r
+    break;\r
+\r
+  case tok::greaterequal:\r
+    RemainingToken = tok::equal;\r
+    ReplacementStr = "> =";\r
+    break;\r
+\r
+  case tok::greatergreaterequal:\r
+    RemainingToken = tok::greaterequal;\r
+    break;\r
+  }\r
+\r
+  // This template-id is terminated by a token which starts with a '>'. Outside\r
+  // C++11, this is now error recovery, and in C++11, this is error recovery if\r
+  // the token isn't '>>'.\r
+\r
+  RAngleLoc = Tok.getLocation();\r
+\r
+  // The source range of the '>>' or '>=' at the start of the token.\r
+  CharSourceRange ReplacementRange =\r
+      CharSourceRange::getCharRange(RAngleLoc,\r
+          Lexer::AdvanceToTokenCharacter(RAngleLoc, 2, PP.getSourceManager(),\r
+                                         getLangOpts()));\r
+\r
+  // A hint to put a space between the '>>'s. In order to make the hint as\r
+  // clear as possible, we include the characters either side of the space in\r
+  // the replacement, rather than just inserting a space at SecondCharLoc.\r
+  FixItHint Hint1 = FixItHint::CreateReplacement(ReplacementRange,\r
+                                                 ReplacementStr);\r
+\r
+  // A hint to put another space after the token, if it would otherwise be\r
+  // lexed differently.\r
+  FixItHint Hint2;\r
+  Token Next = NextToken();\r
+  if ((RemainingToken == tok::greater ||\r
+       RemainingToken == tok::greatergreater) &&\r
+      (Next.is(tok::greater) || Next.is(tok::greatergreater) ||\r
+       Next.is(tok::greatergreatergreater) || Next.is(tok::equal) ||\r
+       Next.is(tok::greaterequal) || Next.is(tok::greatergreaterequal) ||\r
+       Next.is(tok::equalequal)) &&\r
+      areTokensAdjacent(Tok, Next))\r
+    Hint2 = FixItHint::CreateInsertion(Next.getLocation(), " ");\r
+\r
+  unsigned DiagId = diag::err_two_right_angle_brackets_need_space;\r
+  if (getLangOpts().CPlusPlus11 && Tok.is(tok::greatergreater))\r
+    DiagId = diag::warn_cxx98_compat_two_right_angle_brackets;\r
+  else if (Tok.is(tok::greaterequal))\r
+    DiagId = diag::err_right_angle_bracket_equal_needs_space;\r
+  Diag(Tok.getLocation(), DiagId) << Hint1 << Hint2;\r
+\r
+  // Strip the initial '>' from the token.\r
+  if (RemainingToken == tok::equal && Next.is(tok::equal) &&\r
+      areTokensAdjacent(Tok, Next)) {\r
+    // Join two adjacent '=' tokens into one, for cases like:\r
+    //   void (*p)() = f<int>;\r
+    //   return f<int>==p;\r
+    ConsumeToken();\r
+    Tok.setKind(tok::equalequal);\r
+    Tok.setLength(Tok.getLength() + 1);\r
+  } else {\r
+    Tok.setKind(RemainingToken);\r
+    Tok.setLength(Tok.getLength() - 1);\r
+  }\r
+  Tok.setLocation(Lexer::AdvanceToTokenCharacter(RAngleLoc, 1,\r
+                                                 PP.getSourceManager(),\r
+                                                 getLangOpts()));\r
+\r
+  if (!ConsumeLastToken) {\r
+    // Since we're not supposed to consume the '>' token, we need to push\r
+    // this token and revert the current token back to the '>'.\r
+    PP.EnterToken(Tok);\r
+    Tok.setKind(tok::greater);\r
+    Tok.setLength(1);\r
+    Tok.setLocation(RAngleLoc);\r
+  }\r
+  return false;\r
+}\r
+\r
+\r
+/// \brief Parses a template-id that after the template name has\r
+/// already been parsed.\r
+///\r
+/// This routine takes care of parsing the enclosed template argument\r
+/// list ('<' template-parameter-list [opt] '>') and placing the\r
+/// results into a form that can be transferred to semantic analysis.\r
+///\r
+/// \param Template the template declaration produced by isTemplateName\r
+///\r
+/// \param TemplateNameLoc the source location of the template name\r
+///\r
+/// \param SS if non-NULL, the nested-name-specifier preceding the\r
+/// template name.\r
+///\r
+/// \param ConsumeLastToken if true, then we will consume the last\r
+/// token that forms the template-id. Otherwise, we will leave the\r
+/// last token in the stream (e.g., so that it can be replaced with an\r
+/// annotation token).\r
+bool\r
+Parser::ParseTemplateIdAfterTemplateName(TemplateTy Template,\r
+                                         SourceLocation TemplateNameLoc,\r
+                                         const CXXScopeSpec &SS,\r
+                                         bool ConsumeLastToken,\r
+                                         SourceLocation &LAngleLoc,\r
+                                         TemplateArgList &TemplateArgs,\r
+                                         SourceLocation &RAngleLoc) {\r
+  assert(Tok.is(tok::less) && "Must have already parsed the template-name");\r
+\r
+  // Consume the '<'.\r
+  LAngleLoc = ConsumeToken();\r
+\r
+  // Parse the optional template-argument-list.\r
+  bool Invalid = false;\r
+  {\r
+    GreaterThanIsOperatorScope G(GreaterThanIsOperator, false);\r
+    if (Tok.isNot(tok::greater) && Tok.isNot(tok::greatergreater))\r
+      Invalid = ParseTemplateArgumentList(TemplateArgs);\r
+\r
+    if (Invalid) {\r
+      // Try to find the closing '>'.\r
+      SkipUntil(tok::greater, true, !ConsumeLastToken);\r
+\r
+      return true;\r
+    }\r
+  }\r
+\r
+  return ParseGreaterThanInTemplateList(RAngleLoc, ConsumeLastToken);\r
+}\r
+\r
+/// \brief Replace the tokens that form a simple-template-id with an\r
+/// annotation token containing the complete template-id.\r
+///\r
+/// The first token in the stream must be the name of a template that\r
+/// is followed by a '<'. This routine will parse the complete\r
+/// simple-template-id and replace the tokens with a single annotation\r
+/// token with one of two different kinds: if the template-id names a\r
+/// type (and \p AllowTypeAnnotation is true), the annotation token is\r
+/// a type annotation that includes the optional nested-name-specifier\r
+/// (\p SS). Otherwise, the annotation token is a template-id\r
+/// annotation that does not include the optional\r
+/// nested-name-specifier.\r
+///\r
+/// \param Template  the declaration of the template named by the first\r
+/// token (an identifier), as returned from \c Action::isTemplateName().\r
+///\r
+/// \param TNK the kind of template that \p Template\r
+/// refers to, as returned from \c Action::isTemplateName().\r
+///\r
+/// \param SS if non-NULL, the nested-name-specifier that precedes\r
+/// this template name.\r
+///\r
+/// \param TemplateKWLoc if valid, specifies that this template-id\r
+/// annotation was preceded by the 'template' keyword and gives the\r
+/// location of that keyword. If invalid (the default), then this\r
+/// template-id was not preceded by a 'template' keyword.\r
+///\r
+/// \param AllowTypeAnnotation if true (the default), then a\r
+/// simple-template-id that refers to a class template, template\r
+/// template parameter, or other template that produces a type will be\r
+/// replaced with a type annotation token. Otherwise, the\r
+/// simple-template-id is always replaced with a template-id\r
+/// annotation token.\r
+///\r
+/// If an unrecoverable parse error occurs and no annotation token can be\r
+/// formed, this function returns true.\r
+///\r
+bool Parser::AnnotateTemplateIdToken(TemplateTy Template, TemplateNameKind TNK,\r
+                                     CXXScopeSpec &SS,\r
+                                     SourceLocation TemplateKWLoc,\r
+                                     UnqualifiedId &TemplateName,\r
+                                     bool AllowTypeAnnotation) {\r
+  assert(getLangOpts().CPlusPlus && "Can only annotate template-ids in C++");\r
+  assert(Template && Tok.is(tok::less) &&\r
+         "Parser isn't at the beginning of a template-id");\r
+\r
+  // Consume the template-name.\r
+  SourceLocation TemplateNameLoc = TemplateName.getSourceRange().getBegin();\r
+\r
+  // Parse the enclosed template argument list.\r
+  SourceLocation LAngleLoc, RAngleLoc;\r
+  TemplateArgList TemplateArgs;\r
+  bool Invalid = ParseTemplateIdAfterTemplateName(Template, \r
+                                                  TemplateNameLoc,\r
+                                                  SS, false, LAngleLoc,\r
+                                                  TemplateArgs,\r
+                                                  RAngleLoc);\r
+\r
+  if (Invalid) {\r
+    // If we failed to parse the template ID but skipped ahead to a >, we're not\r
+    // going to be able to form a token annotation.  Eat the '>' if present.\r
+    if (Tok.is(tok::greater))\r
+      ConsumeToken();\r
+    return true;\r
+  }\r
+\r
+  ASTTemplateArgsPtr TemplateArgsPtr(TemplateArgs);\r
+\r
+  // Build the annotation token.\r
+  if (TNK == TNK_Type_template && AllowTypeAnnotation) {\r
+    TypeResult Type\r
+      = Actions.ActOnTemplateIdType(SS, TemplateKWLoc,\r
+                                    Template, TemplateNameLoc,\r
+                                    LAngleLoc, TemplateArgsPtr, RAngleLoc);\r
+    if (Type.isInvalid()) {\r
+      // If we failed to parse the template ID but skipped ahead to a >, we're not\r
+      // going to be able to form a token annotation.  Eat the '>' if present.\r
+      if (Tok.is(tok::greater))\r
+        ConsumeToken();\r
+      return true;\r
+    }\r
+\r
+    Tok.setKind(tok::annot_typename);\r
+    setTypeAnnotation(Tok, Type.get());\r
+    if (SS.isNotEmpty())\r
+      Tok.setLocation(SS.getBeginLoc());\r
+    else if (TemplateKWLoc.isValid())\r
+      Tok.setLocation(TemplateKWLoc);\r
+    else\r
+      Tok.setLocation(TemplateNameLoc);\r
+  } else {\r
+    // Build a template-id annotation token that can be processed\r
+    // later.\r
+    Tok.setKind(tok::annot_template_id);\r
+    TemplateIdAnnotation *TemplateId\r
+      = TemplateIdAnnotation::Allocate(TemplateArgs.size(), TemplateIds);\r
+    TemplateId->TemplateNameLoc = TemplateNameLoc;\r
+    if (TemplateName.getKind() == UnqualifiedId::IK_Identifier) {\r
+      TemplateId->Name = TemplateName.Identifier;\r
+      TemplateId->Operator = OO_None;\r
+    } else {\r
+      TemplateId->Name = 0;\r
+      TemplateId->Operator = TemplateName.OperatorFunctionId.Operator;\r
+    }\r
+    TemplateId->SS = SS;\r
+    TemplateId->TemplateKWLoc = TemplateKWLoc;\r
+    TemplateId->Template = Template;\r
+    TemplateId->Kind = TNK;\r
+    TemplateId->LAngleLoc = LAngleLoc;\r
+    TemplateId->RAngleLoc = RAngleLoc;\r
+    ParsedTemplateArgument *Args = TemplateId->getTemplateArgs();\r
+    for (unsigned Arg = 0, ArgEnd = TemplateArgs.size(); Arg != ArgEnd; ++Arg)\r
+      Args[Arg] = ParsedTemplateArgument(TemplateArgs[Arg]);\r
+    Tok.setAnnotationValue(TemplateId);\r
+    if (TemplateKWLoc.isValid())\r
+      Tok.setLocation(TemplateKWLoc);\r
+    else\r
+      Tok.setLocation(TemplateNameLoc);\r
+  }\r
+\r
+  // Common fields for the annotation token\r
+  Tok.setAnnotationEndLoc(RAngleLoc);\r
+\r
+  // In case the tokens were cached, have Preprocessor replace them with the\r
+  // annotation token.\r
+  PP.AnnotateCachedTokens(Tok);\r
+  return false;\r
+}\r
+\r
+/// \brief Replaces a template-id annotation token with a type\r
+/// annotation token.\r
+///\r
+/// If there was a failure when forming the type from the template-id,\r
+/// a type annotation token will still be created, but will have a\r
+/// NULL type pointer to signify an error.\r
+void Parser::AnnotateTemplateIdTokenAsType() {\r
+  assert(Tok.is(tok::annot_template_id) && "Requires template-id tokens");\r
+\r
+  TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);\r
+  assert((TemplateId->Kind == TNK_Type_template ||\r
+          TemplateId->Kind == TNK_Dependent_template_name) &&\r
+         "Only works for type and dependent templates");\r
+\r
+  ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(),\r
+                                     TemplateId->NumArgs);\r
+\r
+  TypeResult Type\r
+    = Actions.ActOnTemplateIdType(TemplateId->SS,\r
+                                  TemplateId->TemplateKWLoc,\r
+                                  TemplateId->Template,\r
+                                  TemplateId->TemplateNameLoc,\r
+                                  TemplateId->LAngleLoc,\r
+                                  TemplateArgsPtr,\r
+                                  TemplateId->RAngleLoc);\r
+  // Create the new "type" annotation token.\r
+  Tok.setKind(tok::annot_typename);\r
+  setTypeAnnotation(Tok, Type.isInvalid() ? ParsedType() : Type.get());\r
+  if (TemplateId->SS.isNotEmpty()) // it was a C++ qualified type name.\r
+    Tok.setLocation(TemplateId->SS.getBeginLoc());\r
+  // End location stays the same\r
+\r
+  // Replace the template-id annotation token, and possible the scope-specifier\r
+  // that precedes it, with the typename annotation token.\r
+  PP.AnnotateCachedTokens(Tok);\r
+}\r
+\r
+/// \brief Determine whether the given token can end a template argument.\r
+static bool isEndOfTemplateArgument(Token Tok) {\r
+  return Tok.is(tok::comma) || Tok.is(tok::greater) || \r
+         Tok.is(tok::greatergreater);\r
+}\r
+\r
+/// \brief Parse a C++ template template argument.\r
+ParsedTemplateArgument Parser::ParseTemplateTemplateArgument() {\r
+  if (!Tok.is(tok::identifier) && !Tok.is(tok::coloncolon) &&\r
+      !Tok.is(tok::annot_cxxscope))\r
+    return ParsedTemplateArgument();\r
+\r
+  // C++0x [temp.arg.template]p1:\r
+  //   A template-argument for a template template-parameter shall be the name\r
+  //   of a class template or an alias template, expressed as id-expression.\r
+  //   \r
+  // We parse an id-expression that refers to a class template or alias\r
+  // template. The grammar we parse is:\r
+  //\r
+  //   nested-name-specifier[opt] template[opt] identifier ...[opt]\r
+  //\r
+  // followed by a token that terminates a template argument, such as ',', \r
+  // '>', or (in some cases) '>>'.\r
+  CXXScopeSpec SS; // nested-name-specifier, if present\r
+  ParseOptionalCXXScopeSpecifier(SS, ParsedType(),\r
+                                 /*EnteringContext=*/false);\r
+  \r
+  ParsedTemplateArgument Result;\r
+  SourceLocation EllipsisLoc;\r
+  if (SS.isSet() && Tok.is(tok::kw_template)) {\r
+    // Parse the optional 'template' keyword following the \r
+    // nested-name-specifier.\r
+    SourceLocation TemplateKWLoc = ConsumeToken();\r
+    \r
+    if (Tok.is(tok::identifier)) {\r
+      // We appear to have a dependent template name.\r
+      UnqualifiedId Name;\r
+      Name.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());\r
+      ConsumeToken(); // the identifier\r
+      \r
+      // Parse the ellipsis.\r
+      if (Tok.is(tok::ellipsis))\r
+        EllipsisLoc = ConsumeToken();\r
+      \r
+      // If the next token signals the end of a template argument,\r
+      // then we have a dependent template name that could be a template\r
+      // template argument.\r
+      TemplateTy Template;\r
+      if (isEndOfTemplateArgument(Tok) &&\r
+          Actions.ActOnDependentTemplateName(getCurScope(),\r
+                                             SS, TemplateKWLoc, Name,\r
+                                             /*ObjectType=*/ ParsedType(),\r
+                                             /*EnteringContext=*/false,\r
+                                             Template))\r
+        Result = ParsedTemplateArgument(SS, Template, Name.StartLocation);\r
+    }\r
+  } else if (Tok.is(tok::identifier)) {\r
+    // We may have a (non-dependent) template name.\r
+    TemplateTy Template;\r
+    UnqualifiedId Name;\r
+    Name.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());\r
+    ConsumeToken(); // the identifier\r
+    \r
+    // Parse the ellipsis.\r
+    if (Tok.is(tok::ellipsis))\r
+      EllipsisLoc = ConsumeToken();\r
+\r
+    if (isEndOfTemplateArgument(Tok)) {\r
+      bool MemberOfUnknownSpecialization;\r
+      TemplateNameKind TNK = Actions.isTemplateName(getCurScope(), SS,\r
+                                               /*hasTemplateKeyword=*/false,\r
+                                                    Name,\r
+                                               /*ObjectType=*/ ParsedType(), \r
+                                                    /*EnteringContext=*/false, \r
+                                                    Template,\r
+                                                MemberOfUnknownSpecialization);\r
+      if (TNK == TNK_Dependent_template_name || TNK == TNK_Type_template) {\r
+        // We have an id-expression that refers to a class template or\r
+        // (C++0x) alias template. \r
+        Result = ParsedTemplateArgument(SS, Template, Name.StartLocation);\r
+      }\r
+    }\r
+  }\r
+  \r
+  // If this is a pack expansion, build it as such.\r
+  if (EllipsisLoc.isValid() && !Result.isInvalid())\r
+    Result = Actions.ActOnPackExpansion(Result, EllipsisLoc);\r
+  \r
+  return Result;\r
+}\r
+\r
+/// ParseTemplateArgument - Parse a C++ template argument (C++ [temp.names]).\r
+///\r
+///       template-argument: [C++ 14.2]\r
+///         constant-expression\r
+///         type-id\r
+///         id-expression\r
+ParsedTemplateArgument Parser::ParseTemplateArgument() {\r
+  // C++ [temp.arg]p2:\r
+  //   In a template-argument, an ambiguity between a type-id and an\r
+  //   expression is resolved to a type-id, regardless of the form of\r
+  //   the corresponding template-parameter.\r
+  //\r
+  // Therefore, we initially try to parse a type-id.  \r
+  if (isCXXTypeId(TypeIdAsTemplateArgument)) {\r
+    SourceLocation Loc = Tok.getLocation();\r
+    TypeResult TypeArg = ParseTypeName(/*Range=*/0, \r
+                                       Declarator::TemplateTypeArgContext);\r
+    if (TypeArg.isInvalid())\r
+      return ParsedTemplateArgument();\r
+    \r
+    return ParsedTemplateArgument(ParsedTemplateArgument::Type,\r
+                                  TypeArg.get().getAsOpaquePtr(), \r
+                                  Loc);\r
+  }\r
+  \r
+  // Try to parse a template template argument.\r
+  {\r
+    TentativeParsingAction TPA(*this);\r
+\r
+    ParsedTemplateArgument TemplateTemplateArgument\r
+      = ParseTemplateTemplateArgument();\r
+    if (!TemplateTemplateArgument.isInvalid()) {\r
+      TPA.Commit();\r
+      return TemplateTemplateArgument;\r
+    }\r
+    \r
+    // Revert this tentative parse to parse a non-type template argument.\r
+    TPA.Revert();\r
+  }\r
+  \r
+  // Parse a non-type template argument. \r
+  SourceLocation Loc = Tok.getLocation();\r
+  ExprResult ExprArg = ParseConstantExpression(MaybeTypeCast);\r
+  if (ExprArg.isInvalid() || !ExprArg.get())\r
+    return ParsedTemplateArgument();\r
+\r
+  return ParsedTemplateArgument(ParsedTemplateArgument::NonType, \r
+                                ExprArg.release(), Loc);\r
+}\r
+\r
+/// \brief Determine whether the current tokens can only be parsed as a \r
+/// template argument list (starting with the '<') and never as a '<' \r
+/// expression.\r
+bool Parser::IsTemplateArgumentList(unsigned Skip) {\r
+  struct AlwaysRevertAction : TentativeParsingAction {\r
+    AlwaysRevertAction(Parser &P) : TentativeParsingAction(P) { }\r
+    ~AlwaysRevertAction() { Revert(); }\r
+  } Tentative(*this);\r
+  \r
+  while (Skip) {\r
+    ConsumeToken();\r
+    --Skip;\r
+  }\r
+  \r
+  // '<'\r
+  if (!Tok.is(tok::less))\r
+    return false;\r
+  ConsumeToken();\r
+\r
+  // An empty template argument list.\r
+  if (Tok.is(tok::greater))\r
+    return true;\r
+  \r
+  // See whether we have declaration specifiers, which indicate a type.\r
+  while (isCXXDeclarationSpecifier() == TPResult::True())\r
+    ConsumeToken();\r
+  \r
+  // If we have a '>' or a ',' then this is a template argument list.\r
+  return Tok.is(tok::greater) || Tok.is(tok::comma);\r
+}\r
+\r
+/// ParseTemplateArgumentList - Parse a C++ template-argument-list\r
+/// (C++ [temp.names]). Returns true if there was an error.\r
+///\r
+///       template-argument-list: [C++ 14.2]\r
+///         template-argument\r
+///         template-argument-list ',' template-argument\r
+bool\r
+Parser::ParseTemplateArgumentList(TemplateArgList &TemplateArgs) {\r
+  // Template argument lists are constant-evaluation contexts.\r
+  EnterExpressionEvaluationContext EvalContext(Actions,Sema::ConstantEvaluated);\r
+\r
+  while (true) {\r
+    ParsedTemplateArgument Arg = ParseTemplateArgument();\r
+    if (Tok.is(tok::ellipsis)) {\r
+      SourceLocation EllipsisLoc  = ConsumeToken();\r
+      Arg = Actions.ActOnPackExpansion(Arg, EllipsisLoc);\r
+    }\r
+\r
+    if (Arg.isInvalid()) {\r
+      SkipUntil(tok::comma, tok::greater, true, true);\r
+      return true;\r
+    }\r
+\r
+    // Save this template argument.\r
+    TemplateArgs.push_back(Arg);\r
+      \r
+    // If the next token is a comma, consume it and keep reading\r
+    // arguments.\r
+    if (Tok.isNot(tok::comma)) break;\r
+\r
+    // Consume the comma.\r
+    ConsumeToken();\r
+  }\r
+\r
+  return false;\r
+}\r
+\r
+/// \brief Parse a C++ explicit template instantiation\r
+/// (C++ [temp.explicit]).\r
+///\r
+///       explicit-instantiation:\r
+///         'extern' [opt] 'template' declaration\r
+///\r
+/// Note that the 'extern' is a GNU extension and C++11 feature.\r
+Decl *Parser::ParseExplicitInstantiation(unsigned Context,\r
+                                         SourceLocation ExternLoc,\r
+                                         SourceLocation TemplateLoc,\r
+                                         SourceLocation &DeclEnd,\r
+                                         AccessSpecifier AS) {\r
+  // This isn't really required here.\r
+  ParsingDeclRAIIObject\r
+    ParsingTemplateParams(*this, ParsingDeclRAIIObject::NoParent);\r
+\r
+  return ParseSingleDeclarationAfterTemplate(Context,\r
+                                             ParsedTemplateInfo(ExternLoc,\r
+                                                                TemplateLoc),\r
+                                             ParsingTemplateParams,\r
+                                             DeclEnd, AS);\r
+}\r
+\r
+SourceRange Parser::ParsedTemplateInfo::getSourceRange() const {\r
+  if (TemplateParams)\r
+    return getTemplateParamsRange(TemplateParams->data(),\r
+                                  TemplateParams->size());\r
+\r
+  SourceRange R(TemplateLoc);\r
+  if (ExternLoc.isValid())\r
+    R.setBegin(ExternLoc);\r
+  return R;\r
+}\r
+\r
+void Parser::LateTemplateParserCallback(void *P, const FunctionDecl *FD) {\r
+  ((Parser*)P)->LateTemplateParser(FD);\r
+}\r
+\r
+\r
+void Parser::LateTemplateParser(const FunctionDecl *FD) {\r
+  LateParsedTemplatedFunction *LPT = LateParsedTemplateMap[FD];\r
+  if (LPT) {\r
+    ParseLateTemplatedFuncDef(*LPT);\r
+    return;\r
+  }\r
+\r
+  llvm_unreachable("Late templated function without associated lexed tokens");\r
+}\r
+\r
+/// \brief Late parse a C++ function template in Microsoft mode.\r
+void Parser::ParseLateTemplatedFuncDef(LateParsedTemplatedFunction &LMT) {\r
+  if(!LMT.D)\r
+     return;\r
+\r
+  // Get the FunctionDecl.\r
+  FunctionTemplateDecl *FunTmplD = dyn_cast<FunctionTemplateDecl>(LMT.D);\r
+  FunctionDecl *FunD =\r
+      FunTmplD ? FunTmplD->getTemplatedDecl() : cast<FunctionDecl>(LMT.D);\r
+  // Track template parameter depth.\r
+  TemplateParameterDepthRAII CurTemplateDepthTracker(TemplateParameterDepth);\r
+\r
+  // To restore the context after late parsing.\r
+  Sema::ContextRAII GlobalSavedContext(Actions, Actions.CurContext);\r
+\r
+  SmallVector<ParseScope*, 4> TemplateParamScopeStack;\r
+\r
+  // Get the list of DeclContexts to reenter.\r
+  SmallVector<DeclContext*, 4> DeclContextsToReenter;\r
+  DeclContext *DD = FunD->getLexicalParent();\r
+  while (DD && !DD->isTranslationUnit()) {\r
+    DeclContextsToReenter.push_back(DD);\r
+    DD = DD->getLexicalParent();\r
+  }\r
+\r
+  // Reenter template scopes from outermost to innermost.\r
+  SmallVector<DeclContext*, 4>::reverse_iterator II =\r
+      DeclContextsToReenter.rbegin();\r
+  for (; II != DeclContextsToReenter.rend(); ++II) {\r
+    if (ClassTemplatePartialSpecializationDecl *MD =\r
+            dyn_cast_or_null<ClassTemplatePartialSpecializationDecl>(*II)) {\r
+      TemplateParamScopeStack.push_back(\r
+          new ParseScope(this, Scope::TemplateParamScope));\r
+      Actions.ActOnReenterTemplateScope(getCurScope(), MD);\r
+      ++CurTemplateDepthTracker;\r
+    } else if (CXXRecordDecl *MD = dyn_cast_or_null<CXXRecordDecl>(*II)) {\r
+      bool IsClassTemplate = MD->getDescribedClassTemplate() != 0;\r
+      TemplateParamScopeStack.push_back(new ParseScope(\r
+          this, Scope::TemplateParamScope, /*ManageScope*/ IsClassTemplate));\r
+      Actions.ActOnReenterTemplateScope(getCurScope(),\r
+                                        MD->getDescribedClassTemplate());\r
+      if (IsClassTemplate)\r
+        ++CurTemplateDepthTracker;\r
+    }\r
+    TemplateParamScopeStack.push_back(new ParseScope(this, Scope::DeclScope));\r
+    Actions.PushDeclContext(Actions.getCurScope(), *II);\r
+  }\r
+  TemplateParamScopeStack.push_back(\r
+      new ParseScope(this, Scope::TemplateParamScope));\r
+\r
+  DeclaratorDecl *Declarator = dyn_cast<DeclaratorDecl>(FunD);\r
+  if (Declarator && Declarator->getNumTemplateParameterLists() != 0) {\r
+    Actions.ActOnReenterDeclaratorTemplateScope(getCurScope(), Declarator);\r
+    ++CurTemplateDepthTracker;\r
+  }\r
+  Actions.ActOnReenterTemplateScope(getCurScope(), LMT.D);\r
+  ++CurTemplateDepthTracker;\r
+\r
+  assert(!LMT.Toks.empty() && "Empty body!");\r
+\r
+  // Append the current token at the end of the new token stream so that it\r
+  // doesn't get lost.\r
+  LMT.Toks.push_back(Tok);\r
+  PP.EnterTokenStream(LMT.Toks.data(), LMT.Toks.size(), true, false);\r
+\r
+  // Consume the previously pushed token.\r
+  ConsumeAnyToken(/*ConsumeCodeCompletionTok=*/true);\r
+  assert((Tok.is(tok::l_brace) || Tok.is(tok::colon) || Tok.is(tok::kw_try))\r
+         && "Inline method not starting with '{', ':' or 'try'");\r
+\r
+  // Parse the method body. Function body parsing code is similar enough\r
+  // to be re-used for method bodies as well.\r
+  ParseScope FnScope(this, Scope::FnScope|Scope::DeclScope);\r
+\r
+  // Recreate the containing function DeclContext.\r
+  Sema::ContextRAII FunctionSavedContext(Actions, Actions.getContainingDC(FunD));\r
+\r
+  Actions.ActOnStartOfFunctionDef(getCurScope(), FunD);\r
+\r
+  if (Tok.is(tok::kw_try)) {\r
+    ParseFunctionTryBlock(LMT.D, FnScope);\r
+  } else {\r
+    if (Tok.is(tok::colon))\r
+      ParseConstructorInitializer(LMT.D);\r
+    else\r
+      Actions.ActOnDefaultCtorInitializers(LMT.D);\r
+\r
+    if (Tok.is(tok::l_brace)) {\r
+      assert((!FunTmplD || FunTmplD->getTemplateParameters()->getDepth() <\r
+                               TemplateParameterDepth) &&\r
+             "TemplateParameterDepth should be greater than the depth of "\r
+             "current template being instantiated!");\r
+      ParseFunctionStatementBody(LMT.D, FnScope);\r
+      Actions.MarkAsLateParsedTemplate(FunD, false);\r
+    } else\r
+      Actions.ActOnFinishFunctionBody(LMT.D, 0);\r
+  }\r
+\r
+  // Exit scopes.\r
+  FnScope.Exit();\r
+  SmallVector<ParseScope*, 4>::reverse_iterator I =\r
+   TemplateParamScopeStack.rbegin();\r
+  for (; I != TemplateParamScopeStack.rend(); ++I)\r
+    delete *I;\r
+\r
+  DeclGroupPtrTy grp = Actions.ConvertDeclToDeclGroup(LMT.D);\r
+  if (grp)\r
+    Actions.getASTConsumer().HandleTopLevelDecl(grp.get());\r
+}\r
+\r
+/// \brief Lex a delayed template function for late parsing.\r
+void Parser::LexTemplateFunctionForLateParsing(CachedTokens &Toks) {\r
+  tok::TokenKind kind = Tok.getKind();\r
+  if (!ConsumeAndStoreFunctionPrologue(Toks)) {\r
+    // Consume everything up to (and including) the matching right brace.\r
+    ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false);\r
+  }\r
+\r
+  // If we're in a function-try-block, we need to store all the catch blocks.\r
+  if (kind == tok::kw_try) {\r
+    while (Tok.is(tok::kw_catch)) {\r
+      ConsumeAndStoreUntil(tok::l_brace, Toks, /*StopAtSemi=*/false);\r
+      ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false);\r
+    }\r
+  }\r
+}\r
index 3cdf5df8d143c63ef54fcde55a0fd4954285309d..fbb13ae6ed81705b24993e54af857910b25af854 100644 (file)
@@ -1,76 +1,97 @@
-// RUN: %clang_cc1 -std=c++1y -verify %s
-// RUN: %clang_cc1 -std=c++1y -verify %s -fdelayed-template-parsing
-
-namespace nested_local_templates_1 {
-
-template <class T> struct Outer {
-  template <class U> int outer_mem(T t, U u) {
-    struct Inner {
-      template <class V> int inner_mem(T t, U u, V v) {
-        struct InnerInner {
-          template <class W> int inner_inner_mem(W w, T t, U u, V v) {
-            return 0;
-          }
-        };
-        InnerInner().inner_inner_mem("abc", t, u, v);
-        return 0;
-      }
-    };
-    Inner i;
-    i.inner_mem(t, u, 3.14);
-    return 0;
-  }
-
-  template <class U> int outer_mem(T t, U *u);
-};
-
-template int Outer<int>::outer_mem(int, char);
-
-template <class T> template <class U> int Outer<T>::outer_mem(T t, U *u) {
-  struct Inner {
-    template <class V>
-    int inner_mem(T t, U u, V v) { //expected-note{{candidate function}}
-      struct InnerInner {
-        template <class W> int inner_inner_mem(W w, T t, U u, V v) { return 0; }
-      };
-      InnerInner().inner_inner_mem("abc", t, u, v);
-      return 0;
-    }
-  };
-  Inner i;
-  i.inner_mem(t, U{}, i);
-  i.inner_mem(t, u, 3.14); //expected-error{{no matching member function for call to 'inner}}
-  return 0;
-}
-
-template int Outer<int>::outer_mem(int, char *); //expected-note{{in instantiation of function}}
-
-} // end ns
-
-namespace nested_local_templates_2 {
-
-template <class T> struct Outer {
-  template <class U> void outer_mem(T t, U u) {
-    struct Inner {
-      template <class V> struct InnerTemplateClass {
-        template <class W>
-        void itc_mem(T t, U u, V v, W w) { //expected-note{{candidate function}}
-          struct InnerInnerInner {
-            template <class X> void iii_mem(X x) {}
-          };
-          InnerInnerInner i;
-          i.iii_mem("abc");
-        }
-      };
-    };
-    Inner i;
-    typename Inner::template InnerTemplateClass<Inner> ii;
-    ii.itc_mem(t, u, i, "jim");
-    ii.itc_mem(t, u, 0, "abd"); //expected-error{{no matching member function}}
-  }
-};
-
-template void
-Outer<int>::outer_mem(int, char); //expected-note{{in instantiation of}}
-
-}
+// RUN: %clang_cc1 -std=c++1y -verify %s\r
+// RUN: %clang_cc1 -std=c++1y -verify %s -fdelayed-template-parsing\r
+\r
+namespace nested_local_templates_1 {\r
+\r
+template <class T> struct Outer {\r
+  template <class U> int outer_mem(T t, U u) {\r
+    struct Inner {\r
+      template <class V> int inner_mem(T t, U u, V v) {\r
+        struct InnerInner {\r
+          template <class W> int inner_inner_mem(W w, T t, U u, V v) {\r
+            return 0;\r
+          }\r
+        };\r
+        InnerInner().inner_inner_mem("abc", t, u, v);\r
+        return 0;\r
+      }\r
+    };\r
+    Inner i;\r
+    i.inner_mem(t, u, 3.14);\r
+    return 0;\r
+  }\r
+\r
+  template <class U> int outer_mem(T t, U *u);\r
+};\r
+\r
+template int Outer<int>::outer_mem(int, char);\r
+\r
+template <class T> template <class U> int Outer<T>::outer_mem(T t, U *u) {\r
+  struct Inner {\r
+    template <class V>\r
+    int inner_mem(T t, U u, V v) { //expected-note{{candidate function}}\r
+      struct InnerInner {\r
+        template <class W> int inner_inner_mem(W w, T t, U u, V v) { return 0; }\r
+      };\r
+      InnerInner().inner_inner_mem("abc", t, u, v);\r
+      return 0;\r
+    }\r
+  };\r
+  Inner i;\r
+  i.inner_mem(t, U{}, i);\r
+  i.inner_mem(t, u, 3.14); //expected-error{{no matching member function for call to 'inner}}\r
+  return 0;\r
+}\r
+\r
+template int Outer<int>::outer_mem(int, char *); //expected-note{{in instantiation of function}}\r
+\r
+} // end ns\r
+\r
+namespace nested_local_templates_2 {\r
+\r
+template <class T> struct Outer {\r
+  template <class U> void outer_mem(T t, U u) {\r
+    struct Inner {\r
+      template <class V> struct InnerTemplateClass {\r
+        template <class W>\r
+        void itc_mem(T t, U u, V v, W w) { //expected-note{{candidate function}}\r
+          struct InnerInnerInner {\r
+            template <class X> void iii_mem(X x) {}\r
+          };\r
+          InnerInnerInner i;\r
+          i.iii_mem("abc");\r
+        }\r
+      };\r
+    };\r
+    Inner i;\r
+    typename Inner::template InnerTemplateClass<Inner> ii;\r
+    ii.itc_mem(t, u, i, "jim");\r
+    ii.itc_mem(t, u, 0, "abd"); //expected-error{{no matching member function}}\r
+  }\r
+};\r
+\r
+template void\r
+    Outer<int>::outer_mem(int, char); //expected-note{{in instantiation of}}\r
+\r
+}\r
+\r
+namespace more_nested_local_templates {\r
+\r
+int test() {\r
+  struct Local {\r
+    template <class U> void foo(U u) {\r
+      struct Inner {\r
+        template <class A> auto operator()(A a, U u2)->U { return u2; }\r
+        ;\r
+      };\r
+      Inner GL;\r
+      GL('a', u);\r
+      GL(3.14, u);\r
+    }\r
+  };\r
+  Local l;\r
+  l.foo("nmabc");\r
+  return 0;\r
+}\r
+int t = test();\r
+}
\ No newline at end of file