2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0165-8.cs
blobb6f8ddd5dc3283769d8bc5dbd36a1d452713c9e9
1 // cs0165-8.cs: Use of unassigned local variable `service'
2 // Line: 17
3 using System;
5 public class Foo
7 static void Main ()
9 int service;
11 foreach (char b in "hola") {
12 Console.WriteLine (b);
13 service = 1;
14 break;
17 Console.WriteLine (service);