Commit 8c5f3e15 by Nathan Sidwell Committed by Nathan Sidwell

* g++.old-deja/g++.other/deref1.C: New test.

From-SVN: r29080
parent 43d5109b
Fri Sep 03 09:31:10 BST 1999 Nathan Sidwell <nathan@acm.org>
* g++.old-deja/g++.other/deref1.C: New test.
Thu Sep 02 09:27:34 BST 1999 Nathan Sidwell <nathan@acm.org>
* g++.old-deja/g++.other/ambig2.C: New test.
......
// Copyright (C) 1999 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 1 Sep 1999 <nathan@acm.org>
// [expr.unary.op]/1 says you can dereference all pointers except for pointers
// to cv void.
void fn (void *vp, volatile void *vvp)
{
*vp; // ERROR - not a pointer to object
*vvp; // ERROR - not a pointer to object
&*vp; // ERROR - not a pointer to object
&*vvp; // ERROR - not a pointer to object
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment