summaryrefslogtreecommitdiffstats
path: root/tests/language-server/ctor-hover.slang
blob: 186d373cffda991f70c12e41061298f1b8f4e6c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//TEST:LANG_SERVER(filecheck=CHECK):
struct MyType
{
    __init(int x) {}
}

void test()
{
//HOVER:10,18
    let obj = MyType(5);
    //        ^^^^^
    //        Hover here should show info for the ctor, not the type.
}

//CHECK: MyType.init