[OptTable] Fix typo VALUE => VALUES (NFCI) (#121523)
[llvm-project.git] / clang / test / Index / USR / func-template.cpp
blobc9c82f5e30a751fd2a552ff9f300621630c988ae
1 // RUN: c-index-test core -print-source-symbols -- %s | FileCheck %s
3 template<typename T>
4 struct A {
5 void f(int);
6 // CHECK: {{[0-9]+}}:8 | instance-method/C++ | f | c:@ST>1#T@A@F@f#I# |
8 template<typename U>
9 void f(U);
10 // CHECK: {{[0-9]+}}:8 | instance-method/C++ | f | c:@ST>1#T@A@FT@>1#Tf#t1.0#v# |
12 template<>
13 void f<int>(int);
14 // CHECK: {{[0-9]+}}:8 | instance-method/C++ | f | c:@ST>1#T@A@F@f<#I>#I# |