2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-638.cs
blob6b751cfb1851e9e14cb9ad6f9519c779cf8efa91
1 using System;
2 using System.Threading;
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 ();
12 t (null, null);