annotate tests/mini/boolexp.d @ 834:f466f475b654

Added proper "need 'this' to access member foo" errors instead of "variable foo not resolved" for some cases, added FIXME for the old error! Added a bit more information to the runtime's cyclic dependency detection exception.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Tue, 09 Dec 2008 01:56:39 +0100
parents 216b14b9a773
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
668
216b14b9a773 Add tests.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
1 bool got() { return true; }
216b14b9a773 Add tests.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
2 extern(C) int printf(char*, ...);
216b14b9a773 Add tests.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
3 void main()
216b14b9a773 Add tests.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
4 {
216b14b9a773 Add tests.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
5 bool b = true && got();
216b14b9a773 Add tests.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
6 printf("%d\n", b ? 1 : 0);
216b14b9a773 Add tests.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
7 }