blob: b7a6d31127140d05317ff7845f3457ba3a7138be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//TEST:LANG_SERVER(filecheck=CHECK):
struct Parent<V>
{
static void test<T, int size>(vector<T, size> v, int m)
{}
static void test(){}
}
void use()
{
//SIGNATURE:12,25
Parent<int>.test(1, 2);
}
//CHECK:static func Parent<int>.test<T, size>(vector<T,size> v, int m) -> void
|