* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / koenig9.C
blobf867a32ecc8e250419be040c82a08cb71c077733
1 // Test for sensible handling of template-ids with arg-dep lookup.
2 // This is still an open issue.
4 namespace N
6   struct A { };
7   void f(void (*)(int, N::A));
10 namespace M
12   struct B { };
13   void f(void (*)(B, N::A));
16 template <class T>
17 void g(T, N::A);
19 void g();
21 int main()
23   f(g<int>);
24   f(g<M::B>);