add ISafeSerializationData
[mcs.git] / tests / test-587.cs
blobef2ae26bef4ff09e4bea376e6bf170303ff02c2b
1 class Program
3 static int Main ()
5 int ctc_f = 0;
7 if ((++ctc_f == 0 && false)) {
8 return 1;
9 } else if (false && +ctc_f == 0) {
10 return 2;
11 } else {
12 if (ctc_f != 1) {
13 return 3;
16 return 0;