2007-03-19 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / errors / cs0165-7.cs
blob3cffc1b49fdf67576f1da7dccd33c3edc516c85c
1 // cs0165-7.cs: Use of unassigned local variable `service'
2 // Line: 16
3 using System;
5 public class Foo
7 static void Main (string[] args)
9 int service;
11 for (int pos = 0; pos < args.Length; pos++) {
12 service = 1;
13 break;
16 Console.WriteLine (service);