aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/parse/crash66.C
blob: ceedd2be243a0defb90cf42ed95d444eacaf2e07 (plain)
1
2
3
4
5
6
7
8
9
10
11
// PR c++/58647

struct A
{
  static void foo();
};

template<typename> void bar()
{
  A().foo;
}