Preliminary AST representation and semantic analysis for
explicitly-specified template argument lists in member reference
expressions, e.g.,

  x->f<int>()



git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@80646 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/SemaTemplate/member-function-template.cpp b/test/SemaTemplate/member-function-template.cpp
index 087f395..8eb40c8 100644
--- a/test/SemaTemplate/member-function-template.cpp
+++ b/test/SemaTemplate/member-function-template.cpp
@@ -43,7 +43,7 @@
 void test_X_f0_explicit(X x, int i, long l) {
   int &ir1 = x.f0<int>(i);
   int &ir2 = x.f0<>(i);
-  int &ir3 = x.f0<long>(i);
+  long &il1 = x.f0<long>(i);
 }
 
 // PR4608