view tests/mini/boolexp.d @ 852:c1aeb2d0b559

Missed line when removing env sanitizing.
author Christian Kamm <kamm incasoftware de>
date Sun, 14 Dec 2008 16:39:27 +0100
parents 216b14b9a773
children
line wrap: on
line source

bool got() { return true; }
extern(C) int printf(char*, ...);
void main()
{
  bool b = true && got();
  printf("%d\n", b ? 1 : 0);
}