Merge pull request #4615 from alexanderkyte/string_error_handling
[mono.git] / mcs / errors / cs0177-11.cs
1 // CS0177: The out parameter `s' must be assigned to before control leaves the current method
2 // Line: 17
3
4 public class C
5 {
6 }
7
8 public struct S
9 {
10         public C c;
11 }
12
13 public class Test
14 {
15         void M (out S s)
16         {
17                 var xx = s.c;
18         }
19 }