Add a third AOT location, alongside ~/.mono/aot-cache and the assembly dir
[mono.git] / mcs / errors / cs1615-3.cs
1 // CS1615: Argument `#1' does not require `out' modifier. Consider removing `out' modifier
2 // Line: 8
3
4 public class C
5 {
6         public static void Main ()
7         {
8                 Foo (out var y);
9         }
10
11         static void Foo (int x)
12         {
13         }
14
15         static void Foo (string x)
16         {
17         }
18 }