Merge pull request #3769 from evincarofautumn/fix-verify-before-allocs
[mono.git] / mcs / errors / cs0119-5.cs
1 // CS0119: Expression denotes a `variable', where a `type' was expected
2 // Line: 8
3
4 class A
5 {
6         public void f ()
7         {
8                 this.test bad = null;
9         }
10         static void Main () {}
11 }
12