shithub: scc

ref: 85246aa9496cda4ba923939682de23b0f44bfaca
dir: /cc1/tests/test044.c/

View raw version
/* See LICENSE file for copyright and license details. */

/*
name: TEST044
description: Test of corner cases in #if
error:
test044.c:17: warning: division by 0
test044.c:21: warning: division by 0
test044.c:25: warning: division by 0
test044.c:31: error: parameter of #if is not an integer constant expression
test044.c:32: error: #error  3 != (1,2,3)
output:
*/

/* These should be accepted */

  #if 0 != (0 && (0/0))
    #error 0 != (0 && (0/0))
  #endif

  #if 1 != (-1 || (0/0))
    #error 1 != (-1 || (0/0))
  #endif

  #if 3 != (-1 ? 3 : (0/0))
    #error 3 != (-1 ? 3 : (0/0))
  #endif

/* This is invalid code (it is a constraint violation) */

  #if 3 != (1,2,3)
    #error 3 != (1,2,3)
  #endif