cs0165.cs 120 B

1234567891011
  1. // cs0165.cs: Use of unassigned local variable
  2. // Line: 9
  3. class T {
  4. public T ()
  5. {
  6. int errors;
  7. errors += 1;
  8. }
  9. }