2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.law / cvt20.C
blob9235fb5b0ea61c2d304a5c35c32584842f59213f
1 // { dg-do assemble  }
2 // GROUPS passed conversions
3 // cvt file
4 // Message-Id: <9307152250.AA24812@volterra>
5 // From: rst@ai.mit.edu (Robert S. Thau)
6 // Subject: g++ won't convert char[] to char*&
7 // Date: Thu, 15 Jul 93 18:50:59 EDT
10 // Compiles fine with Sun CC 2.1
12 void f(char *& x)
13 {// { dg-error "" } location of error
14   x++;
17 int main()
19   f ("foo");// { dg-error "" } init of non-const ref from char*