1 // cs0165-11.cs: Use of unassigned local variable `fb'
3 using System
.Collections
;
5 public class EntryPoint
{
6 public static void Main() {
7 ArrayList fields
= new ArrayList();
10 while (fields
.Count
> 0) {
11 fb
= (Field
) fields
[0];
15 System
.Console
.WriteLine ("shouldn't compile here.");