Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / tests / tight-loop.cs
1 class T {
2         public static int Main () {
3                 int n = 0;
4                 while (n < 100000000) {
5                         ++n;
6                 }
7                 return 0;
8         }
9 }