[svn r16] * Updated all tests to have a main

* Updated runalltests to both compile and run the tests
This commit is contained in:
Tomas Lindquist Olsen
2007-10-02 05:27:44 +02:00
parent 4eab68b36c
commit 6e85d0f89e
4 changed files with 25 additions and 7 deletions

View File

@@ -6,3 +6,11 @@ struct Imp
long l;
float f;
}
void main()
{
Imp i;
assert(i.i == 0);
assert(i.l == 0L);
assert(i.f !<>= 0.0f);
}