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>