aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/crash28.C
blob: e8b2bbb298530a2b0bd8273bdd44944282bf0033 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// PR c++/18445

struct a
{
  int what();
};
void g(void*);
template<class T>
void f()
{
  a ex;
  g(ex.what); // { dg-error "" }
}