blob: 4134ef6f64bf8b100856ddf4be7fba2cd0e57b48 [file] [log] [blame]
// { dg-do compile }
// These typename should work as they are types.
struct A
{
typedef int a;
template <int>
struct f {};
template<int> void foo(int i)
{
typename A::a(i1);
typename A::f<0>(i2);
}
};