Merge remote branch 'upstream/master'
[mono.git] / mcs / tests / test-var-09.cs
1 using System;
2
3 class A
4 {
5         public static int Main ()
6         {
7                 var list = new A ();
8                 var a = list as object;
9                 object o = a;
10                 return 0;
11         }
12 }