[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs0165-6.cs
blobc5a3b3dac4342e81564e096fe6a31e5867cb6a14
1 // CS0165: Use of unassigned local variable `service'
2 // Line: 17
3 using System;
5 public class Foo
7 static void Main (string[] args)
9 int service;
11 int pos = 0;
12 while (pos < args.Length) {
13 service = 1;
14 break;
17 Console.WriteLine (service);