2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / other / error1.C
blob5d7940864572c660cf2379e297559b0d1854c26a
1 // { dg-do compile }
3 // Copyright (C) 2001, 2002 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 18 Dec 2001 <nathan@nathan@codesourcery.com>
6 // PR 90, stupid error message `(this + 160)'
8 class foo {
9   public:
10   int fudge[40];
11   int bar [40];
12   inline int access(int i) {
13     return bar(i);  // { dg-error "cannot be used as a function" }
14   }