[WinForms] Fix #18506 ActiveTracker, do not propagate message to control when it...
[mono-project.git] / mono / benchmark / readonly.cs
blob11ed40d7761e2a4978a2264b96bf34be94f4d7f1
1 using System;
3 public class Test {
5 static readonly int a = 5;
6 static readonly int b = 6;
8 public static int Main (string[] args) {
9 int repeat = 1;
11 if (args.Length == 1)
12 repeat = Convert.ToInt32 (args [0]);
14 Console.WriteLine ("Repeat = " + repeat);
16 for (int i = 0; i < repeat*3; i++) {
17 for (int j = 0; j < 100000000; j++) {
18 if ((a != 5) || (b != 6))
19 return 1;
23 return 0;