1 2 3 4 5 6 7 8 9 10 11
// CS0165: Use of unassigned local variable `errors' // Line: 9 class T { static void Main () { dynamic errors; errors.Call (); } }