[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-638.cs
blob9551aa9f612fc7d2ac5a7447996cf77bd20061ec
1 using System;
2 using System.Threading;
4 class Fail {
5 public 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);