Added Symbolicate tool.
[mono.git] / mcs / errors / cs1503-17.cs
1 // CS1501: Argument `#1' cannot convert `ref string' expression to type `ref int'
2 // Line: 8
3
4 class C
5 {
6         public static void Main ()
7         {
8                 Foo (ref var x = "");
9         }
10
11         static void Foo (ref int i)
12         {
13         }
14 }