Merge pull request #5693 from lateralusX/lateralusX/disable-stack-overflow-win-x64
[mono.git] / mcs / errors / cs1615-3.cs
1 // CS1615: Argument `#1' does not require `out' modifier. Consider removing `out' modifier
2 // Line: 8
3 // Compiler options: -langversion:experimental
4
5 public class C
6 {
7         public static void Main ()
8         {
9                 Foo (out var y);
10         }
11
12         static void Foo (int x)
13         {
14         }
15
16         static void Foo (string x)
17         {
18         }
19 }