Merge remote branch 'upstream/master'
[mono.git] / mcs / errors / cs0246-23.cs
1 // CS0246: The type or namespace name `var' could not be found. Are you missing a using directive or an assembly reference?
2 // Line: 8
3
4
5 class X
6 {
7         public X ()
8         {
9                 var? u = i;
10         }
11 }