2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-var-06.cs
blobd87ce0bbae4ff46bce72bd10dafb64f4731e5b37
2 // Tests variable type inference with the var keyword when using the for-statement
4 using System;
6 public class Test
8 static int Main ()
10 for (var i = 0; i < 1; ++i)
11 if (i.GetType() != typeof (int))
12 return 1;
14 return 0;