[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0165-51.cs
blobbce82c61b55eaddfe86fc8bceec9ff8bc09473d0
1 // CS0165: Use of unassigned local variable `s'
2 // Line: 12
3 // Compiler options: -r:CS0165-51-lib.dll
5 using System;
7 class C<T> where T : class
9 public static void Foo ()
11 S<T> s;
12 Console.WriteLine (s);