summaryrefslogtreecommitdiffstats
path: root/tests/language-server/override-completion.slang
blob: 7cfd52b3e90e349716b6809f6a3d2b2a87502ee3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//TEST:LANG_SERVER(filecheck=CHECK):
interface IBar{}
interface IFoo
{
    int eval();
    void execute<int z,T:IBar>(int x);
}

struct Impl : IFoo
{
//COMPLETE:12,14
    override 
}

//CHECK-DAG: int eval
//CHECK-DAG: void execute<int z, T>