blob: 0979748fd11add0791826ded5289a3c92f94e99a [file] [log] [blame]
// a.h:
template <typename T>
int counter() {
static int cnt = 0;
return ++cnt;
}
inline int f() {
return counter<decltype([] {})>();
}