[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0165-36.cs
blob594eafc6f6ab22bd263a4bdce8d0fe390bbb3f91
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 ())) {
15 Console.WriteLine (s);