aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/diagnostic/method1.C
blob: 0e7c580924a142e04cec7cc963cc1fbb03187d35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// PR c++/44627
// { dg-do compile }

struct A
{
  A *foo ();
};

template <class T>
void
bar ()
{
  A::foo ().anything;	// { dg-error "without object" }
}

void
baz ()
{
  bar <int> ();
}