* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / parse / typename2.C
blob8878497ad2f16a4982e6e58180c68b268cf76660
1 template<class T, class U>
2 struct UnaryReturn {
3         typedef T Type_t;
4 };
6 struct foo
8         template <class T>
9         typename UnaryReturn<T, int>::Type_t
10         bar();
13 template<class T>
14 struct UnaryReturn<T, int> {
15         typedef bool Type_t;