view gcc/testsuite/g++.old-deja/g++.law/bad-error4.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

// { dg-do assemble  }
// GROUPS passed bad-errors
#include <stddef.h>

void * operator new(size_t, int *);
void * operator new(size_t, void *);

int *x = 0;
int foo(){
new (x) int *;
new (&x) int *;
new (x) int *;  // This is identical to line 8 !!!
return 1;
}