intmain(){a<T>();// <- function
a::b();// ^ function
a::b<C, D>();// ^ function
this->b<C, D>();// ^ function
auto x = y;// <- type
vector<T> a;// <- type
std::vector<T> a;// ^ type
}classC:D{A();// <- function
voidefg(){// ^ function
}}voidA::b(){// ^ function
}