"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs0165.cs
blobd03d86362606979d33db01128961f112cfab2d78
1 // CS0165: Use of unassigned local variable `errors'
2 // Line: 9
4 class T {
5 static void Main ()
7 int errors;
9 errors += 1;