[runtime] Coverage profiler fixes (#5698)
[mono.git] / mcs / errors / cs0165-20.cs
1 // CS0165: Use of unassigned local variable `s'
2 // Line: 9
3
4 class Program
5 {
6         static void Main ()
7         {
8                 S s;
9                 s.Test ();
10         }
11 }
12
13 struct S
14 {
15         public string pp;
16         
17         public void Test ()
18         {
19         }
20 }