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