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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [nullptr07.C] - Blame information for rev 715

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

Line No. Rev Author Line
1 693 jeremybenn
// { dg-do compile }
2
// { dg-options "-std=c++0x" }
3
 
4
// Test compare to int
5
 
6
void fun()
7
{
8
  int n = 0;
9
  if( n == nullptr ); // { dg-error "invalid operands of types " }
10
  const int m = 1;
11
  if( m == nullptr ); // { dg-error "invalid operands of types " }
12
  decltype(nullptr) mynull = 0;
13
  if( n == mynull ); // { dg-error "invalid operands of types " }
14
  if( m == mynull ); // { dg-error "invalid operands of types " }
15
}

powered by: WebSVN 2.1.0

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