Merge pull request #5082 from kumpera/fix-ro-fs-file-delete
[mono.git] / mcs / errors / cs0165-15.cs
1 // CS0165: Use of unassigned local variable `errors'
2 // Line: 9
3
4 class T
5 {
6         static void Main ()
7         {
8                 dynamic errors;
9                 errors.Call ();
10         }
11 }