annotate nocompile/ExpressionStatement_01.d @ 187:3c8211ff9a83

added tests for ExpressionStatement without affect
author thomask
date Thu, 09 Dec 2004 07:01:54 +0000
parents
children e38919011244
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
187
3c8211ff9a83 added tests for ExpressionStatement without affect
thomask
parents:
diff changeset
1 // $HeadURL$
3c8211ff9a83 added tests for ExpressionStatement without affect
thomask
parents:
diff changeset
2 // $Date$
3c8211ff9a83 added tests for ExpressionStatement without affect
thomask
parents:
diff changeset
3 // $Author$
3c8211ff9a83 added tests for ExpressionStatement without affect
thomask
parents:
diff changeset
4
3c8211ff9a83 added tests for ExpressionStatement without affect
thomask
parents:
diff changeset
5 // Expressions that have no affect are illegal.
3c8211ff9a83 added tests for ExpressionStatement without affect
thomask
parents:
diff changeset
6 module dstress.nocompile.ExpressionStatement_01;
3c8211ff9a83 added tests for ExpressionStatement without affect
thomask
parents:
diff changeset
7
3c8211ff9a83 added tests for ExpressionStatement without affect
thomask
parents:
diff changeset
8 int main(){
3c8211ff9a83 added tests for ExpressionStatement without affect
thomask
parents:
diff changeset
9 0+1;
3c8211ff9a83 added tests for ExpressionStatement without affect
thomask
parents:
diff changeset
10 return 0;
3c8211ff9a83 added tests for ExpressionStatement without affect
thomask
parents:
diff changeset
11 }