summaryrefslogtreecommitdiff
path: root/tests/language-server/generic-signature-2.slang
blob: 2acbf41139be9de90ecbc02f4c9a67e013b37a5e (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,22
    Parent<int>.test<
}

//CHECK:static func Parent<int>.test<T, int size> -> void