OSDN Git Service

cp/
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / expr / call3.C
1 // PR c++/26036
2 // Origin: <ben@pc-doctor.com>
3 // { dg-do compile }
4
5 struct A
6 {
7   int i;
8 };
9
10 A foo(int);       // { dg-error "too few arguments" }
11
12 int j = foo().i;  // { dg-error "at this point" }