summaryrefslogtreecommitdiffstats
path: root/tests/language-server/member-completion-if-condition.slang
blob: 172bd0e8a7f01712a1e0d644d9b30e60e99054e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//TEST:LANG_SERVER:
//COMPLETE:11,11
struct MyType
{
    int getSum() { return 0; }
}

void m()
{
    MyType t;
    if (t.)
}