2010-06-17 Geoff Norton <gnorton@novell.com>
[mono.git] / mono / tests / tight-loop.cs
bloba596f4d8d68e625e18fac7be17d7bfd5ea1ef1b7
1 class T {
2 public static int Main () {
3 int n = 0;
4 while (n < 100000000) {
5 ++n;
7 return 0;