Merged into single file, added assertions
[mono.git] / mcs / tests / test-638.cs
1 using System;
2 using System.Threading;
3
4 class Fail {
5   static void Main () {
6     string a = "";
7     a += 0 + "A" + 1 + "B" + 2;
8     EventHandler t = delegate {
9       if (a != "0A1B2")
10         throw new Exception ();
11     };
12     t (null, null);
13   }
14 }