source: trunk/src/gcc/gcc/testsuite/g++.old-deja/g++.other/deref1.C@ 2

Last change on this file since 2 was 2, checked in by bird, 22 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 441 bytes
Line 
1// Copyright (C) 1999 Free Software Foundation, Inc.
2// Contributed by Nathan Sidwell 1 Sep 1999 <nathan@acm.org>
3
4// [expr.unary.op]/1 says you can dereference all pointers except for pointers
5// to cv void.
6
7void fn (void *vp, volatile void *vvp)
8{
9 *vp; // ERROR - not a pointer to object
10 *vvp; // ERROR - not a pointer to object
11 &*vp; // ERROR - not a pointer to object
12 &*vvp; // ERROR - not a pointer to object
13}
Note: See TracBrowser for help on using the repository browser.