Fix indentation, spacing.
[mono-project.git] / mcs / errors / cs0177-11.cs
blob69c03070719ba2d0776f400a68aed1c72f21e720
1 // CS0177: The out parameter `s' must be assigned to before control leaves the current method
2 // Line: 17
4 public class C
8 public struct S
10 public C c;
13 public class Test
15 void M (out S s)
17 var xx = s.c;