"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs0165-37.cs
blobcb56118fcd94756a999d6f93c46e476de114f101
1 // CS0165: Use of unassigned local variable `s'
2 // Line: 14
4 using System;
6 class Program
8 public static void Main ()
10 string s;
11 object o = null;
12 while (o != null || string.IsNullOrEmpty (s = (string) o.ToString ())) {
13 Console.WriteLine (s);