summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/pr4926-1.C
blob: ec2b226fe9228d9235568a49f5a37a50a83e70c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// PR c++/4926
// { dg-do compile }

template <unsigned> struct X { typedef int Type; };
template <typename T> struct Y { char array[1]; };
 
template<typename T> Y<T> P(T);  // acts as "Y<typeof(T)>"
 
struct F { int operator()() const; };
 
template <typename T>
typename X<sizeof(P(  T()()  ).array)>::Type  foo();
 
void
bar () 
{ 
  foo<F>();
}