[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs0165-39.cs
blobc5da9d659efe18f71a4141931c05ee6447591bfb
1 // CS0165: Use of unassigned local variable `a'
2 // Line: 16
4 using System;
6 class Program
8 public static void Main ()
10 int a;
11 string s = "";
13 for (int i = 0; s != "s" && (a = 4) > 3; ++i) {
16 Console.WriteLine (a);