OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [warn/] [incomplete1.C] - Blame information for rev 749

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 693 jeremybenn
// { dg-do compile }
2
 
3
// Contributed by Brian Gaeke; public domain.
4
 
5
// 5 If the object being deleted has incomplete class type at the
6
// point of deletion and the complete class has a non-trivial
7
// destructor or a deallocation function, the behavior is undefined.
8
 
9
// (But the deletion does not constitute an ill-formed program. So the
10
// program should nevertheless compile, but it should give a warning.)
11
 
12
class A;        // { dg-warning "forward declaration of 'class A'" "" }
13
 
14
A *a;           // { dg-warning "'a' has incomplete type" "" }
15
 
16
int
17
main (int argc, char **argv)
18
{
19
  delete a;     // { dg-warning "delete" "warn" }
20
  // { dg-message "note" "note" { target *-*-* } 19 }
21
  return 0;
22
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.